Qt Insight Tracker

Qt Insight is an analytics solution designed to provide real customer insights on the usage of your application or device. It was created for companies utilizing embedded technology to shed light on an application’s performance, usage, and user data that may not be otherwise attainable.

Qt Insight Tracker provides C++ and QML APIs to track application usage through events and send the analytic data to a Qt Insight back-end server.

使用模塊

使用 Qt 模塊需要直接 (或透過其它依賴) 鏈接到模塊庫。一些構建工具對此有提供專門支持,包括 CMake 和 qmake。

要導入 QML 類型到應用程序中,使用以下 import 語句在 .qml 文件中:

import QtInsightTracker
					
					

構建采用 CMake

使用 find_package() command to locate the needed module components in the Qt5 package:

find_package(Qt5 REQUIRED COMPONENTS InsightTracker)
target_link_libraries(mytarget PRIVATE Qt::InsightTracker)
					

另請參閱 構建采用 CMake 概述。

采用 qmake 構建

要配置采用 qmake 構建模塊,把模塊作為 Qt 變量的值添加到工程 .pro 文件中:

QT += insighttracker
					
					

概述

For a more detailed overview of Qt Insight Tracker, see Qt Insight Tracker Overview .

範例

API 參考

許可

Qt Insight Tracker is available under commercial licenses from Qt 公司 。見 Qt 許可 進一步瞭解細節。

技術預覽

Qt Insight Tracker is a technology preview. There are no source or binary compatibility guarantees, as APIs may change based on user feedback and general improvements.