Table of Contents

Search

  1. Preface
  2. Introduction to Data Integration Hub
  3. PowerCenter Mappings and Workflows
  4. Data Engineering Integration and Streaming Mapping and Workflows
  5. Data Quality Mappings and Workflows
  6. Informatica Cloud Mappings and Tasks
  7. Data Integration Hub Workflows
  8. Data Integration Hub Transformations
  9. Operational Data Store Dashboard and Reports
  10. Forms Designer
  11. Data Integration Hub Publications and Subscriptions APIs
  12. Data Extraction APIs

Developer Guide

Developer Guide

Custom Dashboard and Reports in Logi Info Studio

Custom Dashboard and Reports in Logi Info Studio

This section applies only if you use the Dashboard using operational data store. Use Logi Info Studio to create custom Dashboard panels based on default KPIs or custom KPIs.
In Logi Info Studio, you create a report and add SQL queries that retrieve numeric event attributes from the operational data store. You then configure a Dashboard panel to display the custom report and deploy the custom Dashboard in
Data Integration Hub
.
You cannot create custom Dashboard panels based on the following reports:
  • Unresolved Error Events by Partner (eventsbypartnerErrorRepository.lgx)
  • Unresolved Error Events by Account (eventsbyaccountErrorRepository.lgx)
  • Unresolved Error Events by Event Type (eventsbyeventstatusErrorRepository.lgx)
  • Unresolved Error Events by Event Status (eventsbyeventstatusErrorRepository.lgx)
  • Tasks (dxtasks.lgx)
When you create custom reports in Logi Info Studio, you can copy the SQL constants from the default Dashboard and modify them based on the KPIs that you want to display in the Dashboard panels.
You can use the SQL constants with the LogiXML constant token. When Logi Info Studio processes the custom reports, the constant token expands the SQL constants. For example, you use the following SQL query:
select facts.ACCOUNT_ID, sum(EVENT_COUNT) as SUM_COUNT from DX_ODS_EVENT_FACTS facts where @Constant.DX_ODS_FILTER_TIME_ORACLE~
The LogiXML constant token expands the SQL query to the following SQL query:
select facts.ACCOUNT_ID, sum(EVENT_COUNT) as SUM_COUNT from DX_ODS_EVENT_FACTS facts where to_timestamp(:requestDateBegin || :requestTimeBegin,'YYYY-MM-DD HH24:MI:SS') <= facts.TIMESLICE and facts.TIMESLICE <= to_timestamp(:requestDateEnd || :requestTimeEnd,'YYYY-MM-DD HH24:MI:SS')
If you create new parameters for your custom report, you must specify a unique name for each parameter. Otherwise, the Dashboard overrides the existing parameters with the same name or processes the parameter values incorrectly. If you create data layer links, you must specify a unique name for each data layer link in all of the reports. Otherwise, the Dashboard may display incorrect data in the Dashboard panel that you create, such as the wrong date or status.

0 COMMENTS

We’d like to hear from you!