Merge pull request #14430 from mozilla/pushbox-fewer-statsd-tags

chore(pushbox): remove statsd metric tags
This commit is contained in:
Dan Schomburg 2022-11-08 15:07:39 -08:00 коммит произвёл GitHub
Родитель aec79ab7f1 1af66728f8
Коммит b9fa47cf68
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 11 удалений

Просмотреть файл

@ -182,11 +182,7 @@ export const pushboxApi = (
'pushbox.db.retrieve.success',
performance.now() - startTime
);
statsd.increment('pushbox.db.retrieve', {
uid,
deviceId,
msgCount: result.messages.length.toString(),
});
statsd.increment('pushbox.db.retrieve');
return {
last: result.last,
index: result.index,
@ -260,7 +256,7 @@ export const pushboxApi = (
'pushbox.db.store.success',
performance.now() - startTime
);
statsd.increment('pushbox.db.store', { uid, deviceId });
statsd.increment('pushbox.db.store');
return { index: result.idx };
} catch (err) {
statsd.timing(
@ -295,7 +291,7 @@ export const pushboxApi = (
'pushbox.db.delete.device.success',
performance.now() - startTime
);
statsd.increment('pushbox.db.delete.device', { uid, deviceId });
statsd.increment('pushbox.db.delete.device');
} catch (err) {
statsd.timing(
'pushbox.db.delete.device.failure',

Просмотреть файл

@ -98,8 +98,7 @@ describe('pushbox', () => {
);
sinon.assert.calledOnceWithExactly(
mockStatsD.increment,
'pushbox.db.store',
{ uid: mockUid, deviceId: mockDeviceIds[0] }
'pushbox.db.store'
);
assert.equal(index, '12');
});
@ -236,8 +235,7 @@ describe('pushbox', () => {
);
sinon.assert.calledOnceWithExactly(
mockStatsD.increment,
'pushbox.db.delete.device',
{ uid: mockUid, deviceId: mockDeviceIds[0] }
'pushbox.db.delete.device'
);
},
(err) => {