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
使用
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 构建模块,把模块作为 Qt 变量的值添加到工程 .pro 文件中:
QT += insighttracker
For a more detailed overview of Qt Insight Tracker, see Qt Insight Tracker Overview .
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.