UmbCheckout Documentation
Buy a LicenseUmbraco HostingUmbraco Development
  • 🛒UmbCheckout Documentation
  • 📔Getting Started
    • Overview
    • License Comparison
    • Installation
    • Configuration
    • Starter Kits
      • Stripe
        • Installation
    • Anonymous Telemetry
    • Developer License
    • Affiliate Scheme
    • Buy a License
  • 🛠️Configuration
    • Configuration Options
    • Product Variants
  • 🛒Core Services
    • Session Service
    • Database Service
    • Basket Service
    • Object Reference
      • Basket
      • Customer
      • UmbCheckoutMetaData
      • UmbCheckoutSession
      • LineItem
      • UmbCheckoutConfiguration
      • MultiUrlPicker
    • Cookies
    • Addons
      • Database Service
    • Property Editors
      • MetaData Property Editor
  • 🆘Support
    • Issue Tracker
    • Milestones
    • Roadmap
    • Support Tickets
  • 💰Payment Providers
    • Payment Providers
      • Stripe
        • Installation
        • Configuration
        • Payment Flow / Lifecycle
        • Stripe Email Notifications
        • Payment Methods
        • Receipts
        • Shipping Rates
        • Services
          • Stripe Shipping Rate ApiService
          • Stripe Shipping Rate Database Service
          • Stripe Session Service
          • Stripe Basket Controller
          • Stripe Webhook Api
            • How to test the Stripe Webhook on localhost
        • Notification Handlers
          • StripeResponseNotificationHandler
        • Notifications
          • OnCheckoutSessionCompletedNotification
          • OnCheckoutSessionExpiredNotification
          • OnPaymentFailedNotification
          • OnChargeFailedNotification
          • OnPaymentIntentSucceededNotification
          • OnPaymentIntentPaymentFailedNotification
          • OnPaymentIntentCreatedNotification
          • OnPaymentIntentCancelledNotification
          • OnChargeSucceededNotification
          • OnShippingRateSavedNotification
          • OnShippingRateDeletedNotification
          • OnPaymentSuccessNotification
        • Webhooks
          • OnChargeFailedWebhook
          • OnChargeSucceededWebhook
          • OnCheckoutSessionCompletedWebhook
          • OnCheckoutSessionExpiredWebhook
          • OnPaymentFailedWebhook
          • OnPaymentIntentCancelledWebhook
          • OnPaymentIntentCreatedWebhook
          • OnPaymentIntentPaymentFailedWebhook
          • OnPaymentIntentSucceededWebhook
          • OnPaymentSuccessWebhook
          • OnShippingRateDeletedWebhook
          • OnShippingRateSavedWebhook
        • Object Reference
          • TaxRate
          • Property
          • Validation
          • Config
          • TaxRateResponse
          • ShippingRateResponse
          • ShippingRate
        • uSync
          • Installation
          • Synchronising Changes
        • Addons
          • Tax Rates
          • Services
            • Stripe Tax Rate ApiService
            • Stripe Tax Rate Database Service
          • Notifications
            • OnStripeTaxRateSavedNotification
            • OnStripeTaxRateDeletedNotification
          • Webhooks
            • OnStripeTaxRateDeletedWebhook
            • OnStripeTaxRateSavedWebhook
          • Property Editors
            • Tax Rates Property Editor
          • uSync
            • Installation
            • Synchronising Changes
        • View Components
          • Basket View Component
          • Add to Basket Button View Component
        • Umbraco Forms Workflow
      • PayPal
      • Klarna
      • Apple Pay
      • Google Pay
      • Bacs Direct Debit / SEPA Direct Debit
  • ⏳Scheduled Tasks & Notifications
    • Remove Expired Baskets From Database
    • Basket Notifications
      • OnBasketAddedNotification
      • OnBasketAddedManyNotification
      • OnBasketAddManyStartedNotification
      • OnBasketAddStartedNotification
      • OnBasketClearedNotification
      • OnBasketClearStartedNotification
      • OnBasketReducedNotification
      • OnBasketReduceStartedNotification
      • OnBasketRemovedManyNotification
      • OnBasketRemovedNotification
      • OnBasketRemoveManyStartedNotification
      • OnBasketRemoveStartedNotification
    • Session Notifications
      • OnSessionClearedNotification
      • OnSessionClearStartedNotification
      • OnSessionCreatedNotification
      • OnSessionCreateStartedNotification
      • OnSessionGetNotification
      • OnSessionGetStartedNotification
      • OnSessionUpdatedNotification
      • OnSessionUpdateStartedNotification
    • Payment Provider Notifications
      • OnProviderClearSessionStartedNotification
      • OnProviderCreateSessionStartedNotification
      • OnProviderGetSessionNotification
      • OnProviderGetSessionStartedNotification
      • OnProviderSessionClearedNotification
      • OnProviderSessionCreatedNotification
    • Configuration Notifications
      • OnConfigurationSavedNotification
  • 🔌Extensions
    • Convert Extensions
    • CultureInfo Extensions
    • Decimal Extensions
  • 👨‍💻View Components
    • Basket Link View Component
  • 🔁Synchronising
    • uSync
      • Installation
      • Synchronising Changes
  • ✉️Umbraco Forms
    • Workflow
  • 🏗️Source Code Repositories
    • UmbCheckout
    • UmbCheckout.Stripe
    • UmbCheckout.uSync
    • UmbCheckout.Stripe.uSync
    • UmbCheckout.Stripe.Forms
Powered by GitBook
On this page
Edit on GitHub
  1. Getting Started

Anonymous Telemetry

What data do we collect and why?

By default, anonymous telemetry is sent to us every time you save the UmbCheckout configuration and after a remote license check has been completed.

Why do we collect this data?

It is so that we concentrate our development in the most used areas, it also lets us have a rough idea on how many sites are using our package

What data is collected?

We collect the following data:

Key
Value

umbracoId

The Umbraco Guid for the site

umbracoVersion

The Umbraco version

umbCheckoutVersion

The UmbCheckout version

installedPackages

The UmbCheckout sub packages which are installed

isLicensed

Whether the site is running on a paid license

isDevelopmentLicense

Whether the site is running on a development license

environmentName

The sites hosting environment name (Development, Staging, Production, etc...)

There is a unique constraint on umbracoId and environmentName

Can I disable the telemetry?

Yes, you can disable the telemetry service by setting the following configuration in your appsettings.json file

{
  "UmbCheckout": {
    "DisableTelemetry": true
  }
}
PreviousInstallationNextDeveloper License

Last updated 1 year ago

📔