123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Analytics:etc/reports.xsd">
- <report name="modules" connection="default" iterator="Magento\Analytics\Model\ReportXml\ModuleIterator">
- <source name="setup_module">
- <attribute name="module" alias="module_name"/>
- <attribute name="schema_version"/>
- <attribute name="data_version"/>
- </source>
- </report>
- <report name="config_data" connection="default">
- <source name="core_config_data">
- <attribute name="path"/>
- <attribute name="value"/>
- </source>
- </report>
- <report name="stores" connection="default">
- <source name="store">
- <attribute name="store_id"/>
- <attribute name="code"/>
- <attribute name="group_id"/>
- <attribute name="name"/>
- <attribute name="is_active"/>
- </source>
- </report>
- <report name="websites" connection="default">
- <source name="store_website">
- <attribute name="website_id"/>
- <attribute name="code"/>
- <attribute name="name"/>
- <attribute name="default_group_id"/>
- <attribute name="is_default"/>
- </source>
- </report>
- <report name="groups" connection="default">
- <source name="store_group">
- <attribute name="group_id"/>
- <attribute name="website_id"/>
- <attribute name="name"/>
- <attribute name="default_store_id"/>
- </source>
- </report>
- </config>
|