diff --git a/14/umbraco-commerce/SUMMARY.md b/14/umbraco-commerce/SUMMARY.md index 85d4ebbae90..d857a492da8 100644 --- a/14/umbraco-commerce/SUMMARY.md +++ b/14/umbraco-commerce/SUMMARY.md @@ -101,6 +101,7 @@ * [Content](reference/storefront-api/endpoints/content.md) * [Management API](reference/management-api/README.md) * [Go behind the scenes](reference/go-behind-the-scenes.md) +* [Telemetry](reference/telemetry/README.md) ## Tutorials diff --git a/14/umbraco-commerce/reference/telemetry/README.md b/14/umbraco-commerce/reference/telemetry/README.md new file mode 100644 index 00000000000..137a477148d --- /dev/null +++ b/14/umbraco-commerce/reference/telemetry/README.md @@ -0,0 +1,39 @@ +--- +description: Get started with Commerce telemetry. +--- + +## Telemetry + +Commerce telemetry is connected directly to the CMS telemetry pipeline and runs with the [ReportSiteJob](https://github.com/umbraco/Umbraco-CMS/blob/v14/dev/src/Umbraco.Infrastructure/BackgroundJobs/Jobs/ReportSiteJob.cs). + +It pulls commerce data using a custom provider. + +### Captured data + +Through the custom provider, the Commerce telemetry pipeline captures the following data defined per store: +* Store ID +* Product Count +* Order Count +* Location Count +* Country Count +* Country Codes +* Currency Count +* Currency Codes +* Payment Method Count +* Payment Providers +* Shipping Method Count +* Shipping Providers +* Shipping Method Types +* Tax Calculation Method Count +* Sales Tax Providers +* Is Custom Product Adapter Used +* Is Custom Product Calculator Used +* Is Custom Order Line Calculator Used +* Is Custom Payment Calculator Used +* Is Custom Shipping Calculator Used +* Is Storefront API Enabled + +### Settings + +Commerce telemetry reporting can be managed in the [Telemetry Data](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/settings-dashboards#telemetry-data) dashboard. + diff --git a/14/umbraco-commerce/release-notes/README.md b/14/umbraco-commerce/release-notes/README.md index 491e6c65cfd..af55ae7adbd 100644 --- a/14/umbraco-commerce/release-notes/README.md +++ b/14/umbraco-commerce/release-notes/README.md @@ -17,6 +17,10 @@ If you are upgrading to a new major version, check the breaking changes in the [ This section contains the release notes for Umbraco Commerce 14 including all changes for this version. +#### 14.2.0 (November 12th 2024) +* Added telemetry support as detailed [here](/14/umbraco-commerce/reference/telemetry/README.md). +* Added a cart-to-order feature that will facilitate admin users to finalize an order directly from the BackOffice cart workspace. + #### [14.1.8](https://github.com/umbraco/Umbraco.Commerce.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.1.8) (November 11th 2024) * Fixed Rounding issue between Umbraco Commerce and Stripe payment gateway [#580](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/580).