Skip to content

Commit

Permalink
fixing merge
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Aug 2, 2021
1 parent 06552cb commit 0d51b00
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ export async function getServiceTransactionDetailedStatistics({
offset?: string;
}) {
const { apmEventClient, start, end } = setup;
const offsetInMs = getOffsetInMs(start, offset);
const startWithOffset = start - offsetInMs;
const endWithOffset = end - offsetInMs;
const { offsetInMs, startWithOffset, endWithOffset } = getOffsetInMs({
start,
end,
offset,
});

const outcomes = getOutcomeAggregation();

Expand Down

0 comments on commit 0d51b00

Please sign in to comment.