reports.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Analytics:etc/reports.xsd">
  9. <report name="modules" connection="default" iterator="Magento\Analytics\Model\ReportXml\ModuleIterator">
  10. <source name="setup_module">
  11. <attribute name="module" alias="module_name"/>
  12. <attribute name="schema_version"/>
  13. <attribute name="data_version"/>
  14. </source>
  15. </report>
  16. <report name="config_data" connection="default">
  17. <source name="core_config_data">
  18. <attribute name="path"/>
  19. <attribute name="value"/>
  20. </source>
  21. </report>
  22. <report name="stores" connection="default">
  23. <source name="store">
  24. <attribute name="store_id"/>
  25. <attribute name="code"/>
  26. <attribute name="group_id"/>
  27. <attribute name="name"/>
  28. <attribute name="is_active"/>
  29. </source>
  30. </report>
  31. <report name="websites" connection="default">
  32. <source name="store_website">
  33. <attribute name="website_id"/>
  34. <attribute name="code"/>
  35. <attribute name="name"/>
  36. <attribute name="default_group_id"/>
  37. <attribute name="is_default"/>
  38. </source>
  39. </report>
  40. <report name="groups" connection="default">
  41. <source name="store_group">
  42. <attribute name="group_id"/>
  43. <attribute name="website_id"/>
  44. <attribute name="name"/>
  45. <attribute name="default_store_id"/>
  46. </source>
  47. </report>
  48. </config>