Skip to content

Commit

Permalink
chore(buddybook): fix telemetry timestamp inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
danisharora099 committed Nov 14, 2024
1 parent 7c5cfcd commit a65d721
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions examples/buddybook/src/lib/waku.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function createMessage({
}

export async function* getMessagesFromStore(node: LightNode) {
const startTime = performance.now();
const startTime = Math.ceil(Date.now() / 1000);
try {
for await (const messagePromises of node.store.queryGenerator([decoder])) {
const messages = await Promise.all(messagePromises);
Expand All @@ -83,7 +83,7 @@ export async function* getMessagesFromStore(node: LightNode) {
yield blockPayload;
}
}
const endTime = performance.now();
const endTime = Math.ceil(Date.now() / 1000);
const timeTaken = endTime - startTime;
console.log("getMessagesFromStore", timeTaken)

Expand All @@ -94,14 +94,14 @@ export async function* getMessagesFromStore(node: LightNode) {
timeTaken,
}));
} catch(e) {
const endTime = performance.now();
const endTime = Math.ceil(Date.now() / 1000);
const timeTaken = endTime - startTime;
Telemetry.push([{
type: TelemetryType.LIGHT_PUSH_FILTER,
protocol: "lightPush",
timestamp: toInt(startTime),
createdAt: toInt(startTime),
seenTimestamp: toInt(startTime),
timestamp: startTime,
createdAt: startTime,
seenTimestamp: startTime,
peerId: node.peerId.toString(),
contentTopic: encoder.contentTopic,
pubsubTopic: encoder.pubsubTopic,
Expand All @@ -128,7 +128,7 @@ export async function subscribeToFilter(node: LightNode, callback: (message: Blo
result,
node,
decoder,
timestamp: Date.now(),
timestamp: Math.ceil(Date.now() / 1000),
}));

const {error, subscription, results} = result;
Expand Down

0 comments on commit a65d721

Please sign in to comment.