此包已被废弃且不再维护。未建议替代包。

Microsoft App Insights遥测客户端php包装器

资助包维护!
norberttech

0.3.0 2023-03-28 10:26 UTC

README

此类封装了microsoft/application-insights包,允许根据当前需求进行配置。

它被创建来简化app-insights-php/app-insights-php-bundle实现。

使用

$client = new AppInsightsPHP\Client\Factory(
    'your_instrumentation_key', 
    AppInsightsPHP\Client\Configuration::createDefault()
);

$client->trackMessage(...);
$client->trackRequest(...);
// ... all methods available by source package

限制

遥测数据的大小限制为64千字节。在尝试向AppInsights发送任何内容之前,遥测将验证该要求。如果超过限制,将抛出异常。为了避免该异常,您应首先检查给定数据是否过大。您可以使用TelemetryData::exceededMaximumSize()来完成此操作。