Skip to content

Commit e32bfd1

Browse files
[Darwin] Adding metrics for MTRDeviceController APIs (project-chip#32582)
* [Darwin] Adding metrics for MTRDeviceController APIs - Adding initial set of metrics for MTRDeviceController APIs around device commissioning - Added uniqueIdentifer to MTRMetrics - Changed MetricsCollector to removed the end event for begin / instant event * Update src/darwin/Framework/CHIPTests/MTRMetricsTests.m Co-authored-by: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com> * Addressed code review feedback * Fixing namespace naming to be consistent * Re-styler fixes --------- Co-authored-by: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com>
1 parent 0884963 commit e32bfd1

9 files changed

+220
-26
lines changed

src/darwin/Framework/CHIP/MTRBaseDevice.mm

+13
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#import "MTREventTLVValueDecoder_Internal.h"
3030
#import "MTRFramework.h"
3131
#import "MTRLogging_Internal.h"
32+
#import "MTRMetricKeys.h"
3233
#import "MTRSetupPayload_Internal.h"
3334
#import "NSDataSpanConversion.h"
3435
#import "NSStringSpanConversion.h"
@@ -61,6 +62,7 @@
6162
using chip::Optional;
6263
using chip::SessionHandle;
6364
using chip::Messaging::ExchangeManager;
65+
using namespace chip::Tracing::DarwinFramework;
6466

6567
NSString * const MTRAttributePathKey = @"attributePath";
6668
NSString * const MTRCommandPathKey = @"commandPath";
@@ -1861,9 +1863,12 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
18611863
queue:(dispatch_queue_t)queue
18621864
completion:(MTRDeviceOpenCommissioningWindowHandler)completion
18631865
{
1866+
MATTER_LOG_METRIC_BEGIN(kMetricOpenPairingWindow);
1867+
18641868
if (self.isPASEDevice) {
18651869
MTR_LOG_ERROR("Can't open a commissioning window over PASE");
18661870
dispatch_async(queue, ^{
1871+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_ERROR_INCORRECT_STATE);
18671872
completion(nil, [MTRError errorForCHIPErrorCode:CHIP_ERROR_INCORRECT_STATE]);
18681873
});
18691874
return;
@@ -1873,6 +1878,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
18731878
if (!CanCastTo<uint16_t>(durationVal)) {
18741879
MTR_LOG_ERROR("Error: Duration %llu is too large.", durationVal);
18751880
dispatch_async(queue, ^{
1881+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_ERROR_INVALID_INTEGER_VALUE);
18761882
completion(nil, [MTRError errorForCHIPErrorCode:CHIP_ERROR_INVALID_INTEGER_VALUE]);
18771883
});
18781884
return;
@@ -1883,6 +1889,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
18831889
if (discriminatorVal > 0xFFF) {
18841890
MTR_LOG_ERROR("Error: Discriminator %llu is too large. Max value %d", discriminatorVal, 0xFFF);
18851891
dispatch_async(queue, ^{
1892+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_ERROR_INVALID_INTEGER_VALUE);
18861893
completion(nil, [MTRError errorForCHIPErrorCode:CHIP_ERROR_INVALID_INTEGER_VALUE]);
18871894
});
18881895
return;
@@ -1894,6 +1901,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
18941901
if (!CanCastTo<uint32_t>(passcodeVal) || !SetupPayload::IsValidSetupPIN(static_cast<uint32_t>(passcodeVal))) {
18951902
MTR_LOG_ERROR("Error: Setup passcode %llu is not valid", passcodeVal);
18961903
dispatch_async(queue, ^{
1904+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_ERROR_INVALID_INTEGER_VALUE);
18971905
completion(nil, [MTRError errorForCHIPErrorCode:CHIP_ERROR_INVALID_INTEGER_VALUE]);
18981906
});
18991907
return;
@@ -1906,19 +1914,22 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
19061914
auto resultCallback = ^(CHIP_ERROR status, const SetupPayload & payload) {
19071915
if (status != CHIP_NO_ERROR) {
19081916
dispatch_async(queue, ^{
1917+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, status);
19091918
completion(nil, [MTRError errorForCHIPErrorCode:status]);
19101919
});
19111920
return;
19121921
}
19131922
auto * payloadObj = [[MTRSetupPayload alloc] initWithSetupPayload:payload];
19141923
if (payloadObj == nil) {
19151924
dispatch_async(queue, ^{
1925+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_ERROR_NO_MEMORY);
19161926
completion(nil, [MTRError errorForCHIPErrorCode:CHIP_ERROR_NO_MEMORY]);
19171927
});
19181928
return;
19191929
}
19201930

19211931
dispatch_async(queue, ^{
1932+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, CHIP_NO_ERROR);
19221933
completion(payloadObj, nil);
19231934
});
19241935
};
@@ -1930,6 +1941,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
19301941

19311942
if (errorCode != CHIP_NO_ERROR) {
19321943
dispatch_async(queue, ^{
1944+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, errorCode);
19331945
completion(nil, [MTRError errorForCHIPErrorCode:errorCode]);
19341946
});
19351947
return;
@@ -1939,6 +1951,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
19391951
}
19401952
errorHandler:^(NSError * error) {
19411953
dispatch_async(queue, ^{
1954+
MATTER_LOG_METRIC_END(kMetricOpenPairingWindow, [MTRError errorToCHIPErrorCode:error]);
19421955
completion(nil, error);
19431956
});
19441957
}];

0 commit comments

Comments
 (0)