Skip to content

Commit

Permalink
Change trent names
Browse files Browse the repository at this point in the history
  • Loading branch information
MogageNicolae committed Aug 19, 2024
1 parent 4a1b7ee commit afbf252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k6/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Trend } from 'k6/metrics';

const BASE_URL = 'http://localhost:3001';

const tokensApiCallTrened = new Trend('tokens_api_call_trend', true);
const nodesApiCallTrened = new Trend('nodes_api_call_trend', true);
const tokensApiCallTrened = new Trend('tokens_http_req_duration', true);
const nodesApiCallTrened = new Trend('nodes_http_req_duration', true);

export const options = {
scenarios: {
Expand All @@ -24,7 +24,7 @@ export const options = {
exec: 'nodes',
},
},
discardResponseBodies: true,
// discardResponseBodies: true,
};

export function tokens() {
Expand Down

0 comments on commit afbf252

Please sign in to comment.