Quantcast
Channel: Symantec Connect - Endpoint Management - Articles
Viewing all articles
Browse latest Browse all 861

Combining Data from Two Cubes in IT Analytics 7.1

$
0
0

When authoring reports in IT Analytics, it may be beneficial to combine data from two different cubes to achieve the desired result set. For example, an administrator may want to combine Patch Management with Asset data to easily identify the location of machines that require critical updates within the same report. Because IT Analytics is built on standard, proven technologies the process to combine data from two cubes into a single report is achievable with a consistent pattern through leveraging Microsoft Report Builder. The example below illustrates how to achieve this goal, without needing to understand the underlying schema or implement complex queries.

To complete this example, you will have to already have assigned assets to locations and you should at least have Report Builder 3.0 installed. Note that while SQL Server 2005 meets the minimum prerequisites for installation of IT Analytics, it will only include Report Builder 1.0. If possible, Symantec strongly recommends using SQL Server 2008 SP2 or higher to take advantage of new features included in Report Builder 3.0 for a more robust custom report authoring experience. For more information on using Report Builder, please see the Microsoft website.

  1. Within the Symantec Management Platform console, navigate to: Settings > Notification Server > IT Analytics, then click on Reports in the left menu tree.
  2. Click the Report Builder tab and then the Launch Report Builder button. 

  1. Allow a few minutes for the application to load. 

  1. From the Getting Started screen, select Table or Matrix Wizard

  1. In the next step you will be prompted to choose a dataset. A dataset includes the desired fields and values to populate the report, similar to how the totals and attributes are selected when browsing a cube and creating a pivot table view in the Symantec Management Platform console. If this is the first time Report Builder has been used there will most likely be no dataset to choose from.  Make sure the Create a dataset radio button is selected and click Next.

  1. The next step will prompt you to choose a connection to a data source. A data source is the repository where the data for the report is stored. In the case of IT Analytics, the data is stored in the Microsoft Analysis Services Database specified when IT Analytics was installed. If you do not know the Analysis Services Database name,  the server where it resides, or have the credentials necessary to connect to it please contact your Altiris Administrator.

  1. To create a new data source, click the Browse button and navigate to the ReportServer/IT Analytics folder on the server that houses SQL Reporting Services. Within that folder there will be a data source called ITAnalytics. Select this as the data source for the report and click Open.

  1. Verify that the data source you just browsed to is displayed on the next screen of the wizard.

  1. Ensure the connection to the data source is valid by clicking the Test Connection button in the lower right of the wizard. Assuming the test succeeded, you should see the following message:

  1. Click Next and you will be prompted to design a query, which will make up the data set for the report. 

  1. We will first build the report with patch management information and then add in the asset location information later. Click the  button toward the top of the window and select the Patch Management cube.

  1. Expand Measures and Patch Vulnerabilities, then drag the Vulnerable Computer Count into the main query window.

  1. Expand the Computer attribute and drag Computer – Name into the query window, just before Vulnerable Computer Count.

  1. Expand the Software Update attribute and drag Software Update – Severity into the query window, just before Computer - Name.

  1. Click Next to complete the creation of the data set.
  2. The next step will prompt you to arrange the fields to display properly in the table. Drag Vulnerable_Computer_Count to the Values window and drag Computer__Name and Software_Update__Severity to the Row Groups window. When completed, click Next.

  1. The next step will prompt you to choose the layout of the report. Accept the default settings and click Next.

  1. The next step will prompt you to select a style for the report. Choose a color scheme you prefer and click Finish.

  1. You should see a sample table on the report canvas. The data source and data set that display on the left navigation have already been created for you via the wizard. Rename the title of the report to Computer Patch Severity and Location.

  1. Resize the font of the title so that it fits within the given area. Also, widen the columns of the table so that you can read the column headers. You can do this in the same way you would with Excel, simply click on the line between the columns, and when a grey bar appears at the top of the table, then expand by dragging the columns.

  1. Right-click on DataSet1 which was created automatically by the wizard (this displays in the Report Data pane on the far left) and then click on Dataset Properties.

  1. Rename the dataset as “PatchData” which will help to differentiate it from the new data set we will create next to pull in the Asset Data. Also notice the query for the dataset which has been written entirely in the background by going through the wizard.

  1. We will now create a new dataset to pull in Asset data specific to the computer’s location. Right-click on Datasets in the Report Data pane and select Add Dataset.

  1. In the Dataset Properties window, name the dataset “AssetData” and select to Use a dataset embedded in my report, then select ITAnalytics in the Data source dropdown.

  1. Click the Query Designer button and the query designer window will appear. If the Assets cube is not already selected in the upper left, click the  button toward the top of the window and select the Assets cube.
  2. Expand the Measures group and then the Assets folder. Drag Asset Count to the main window.

  1. Expand the Asset attribute and drag the Asset – Name field into the query window.

  1. Expand the Location attribute and drag the Location – Name field into the query window, in between Asset – Name and Asset Count

  1. Click OK to close the Query Designer window and click OK again to close the Dataset Properties window. You should see both datasets listed in the Report Date pane.

  1. We now need to create an additional column in our table to display the location data for each computer. To add a column, right-click the grey column header that appears when you click into the Computer Name field, then select: Insert Column > Right.

  1. Click into the new column header and type “Location” then right-click on the data cell below and select Expression

  1. Report Builder has several pre-defined functions built into it that can be leveraged to form an expression and extend report functionality. This works much the same way functions work in Excel, where users need to understand the format of specific functions and the arguments expected to be able to use them accordingly. For this example, we will utilize the Lookup function to tie data from the two datasets together. In the Category column, expand Common Functions and click Miscellaneous, then in the Item column that appears select Lookup.

  1. Notice the description and example provided on the right hand side for the Lookup function. To tie the datasets together we need a common identifier that resides in both sets. In this example, “Computer - Name” (from the Patch Management cube) and “Asset – Name” (from the Asset cube) will be used to signify the 1-to-1 relationship. Once that is established we can then add in the Location Name for each computer to display in the report. To set the expression value for the Lookup function, type the following into the field above:

=Lookup(Fields!Computer___Name.Value,Fields!Asset___Name.Value,Fields!Location___Name.Value, "AssetData")

  1. Note that “ - “ is replaced by “___” because spaces and dashes are not allowed in the expression. The expression window should now look consistent with the screenshot below. If it does, click OK to close the expression window.
  2. You should see an abbreviated place holder in that cell within the table, which represents the expression.

  1. We are now ready to preview the report and ensure the data has been tied together correctly. To preview the report, click the Run button at the top left.

  1. Expand the patch severity levels and verify that the computer names and their associated locations display correctly. If you receive values of “Unknown” for location, verify that you have actually associated a location to that specific asset in the Symantec Management Platform console. Also verify that the Assets cube has been processed in the IT Analytics settings.

  1. Select the Design button to go back to the Design view.

  1. Click the  icon in the Report Builder toolbar to save this report to Reporting Services IT Analytics folder and name it “Computer Patch Severity and Location”.

  1. To link this report into the Symantec Management Platform console open the console then navigate to the Reports > IT Analytics > Reports > Patch Management folder.
  2. Right-click on the Reports folder and select New > IT Analytics Report.

  1. In the Report Type dropdown box, select Report, verify the Folder Name is consistent with where you saved it and then in the Report Name dropdown select the Computers Patch Severity and Location report. Then click the Add Report button.

  1. You should see a message saying that the report was added successfully.
  2. Refresh your browser and expand the Reports folder.

  3. Locate and select the report you just added.

 

Conclusion

IT Analytics provides users several ways to author custom reports, from simple drag-and-drop views to leveraging proven 3rd party applications (like Microsoft Report Builder), all in an effort to deliver flexible and robust reporting. This advanced authoring technique shows how users can tie data together from different cubes and expand reporting capabilities to meet various requirements, without needing to understand the CMDB schema or have advanced knowledge in developing SQL reports. This also opens the door to additional reporting possibilities utilizing various out-of-the-box cube combinations to help meet the business’ evolving report needs. 


Viewing all articles
Browse latest Browse all 861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>