1
- /**
2
- * Test metrics standard functions
3
- *
4
- * @group e2e/metrics/standardFunctions
5
- */
6
1
import { join } from 'node:path' ;
7
2
import {
8
3
TestStack ,
@@ -12,6 +7,7 @@ import {
12
7
CloudWatchClient ,
13
8
GetMetricStatisticsCommand ,
14
9
} from '@aws-sdk/client-cloudwatch' ;
10
+ import { afterAll , beforeAll , describe , expect , it } from 'vitest' ;
15
11
import { getMetrics , sortDimensions } from '../helpers/metricsUtils.js' ;
16
12
import { MetricsTestNodejsFunction } from '../helpers/resources.js' ;
17
13
import {
@@ -72,7 +68,7 @@ describe('Metrics E2E tests, manual usage', () => {
72
68
73
69
describe ( 'ColdStart metrics' , ( ) => {
74
70
it (
75
- 'should capture ColdStart Metric' ,
71
+ 'captures the ColdStart Metric' ,
76
72
async ( ) => {
77
73
const { EXPECTED_NAMESPACE : expectedNamespace } = commonEnvironmentVars ;
78
74
@@ -92,15 +88,6 @@ describe('Metrics E2E tests, manual usage', () => {
92
88
// Check coldstart metric value
93
89
const adjustedStartTime = new Date ( startTime . getTime ( ) - 60 * 1000 ) ;
94
90
const endTime = new Date ( new Date ( ) . getTime ( ) + 60 * 1000 ) ;
95
- console . log (
96
- `Manual command: aws cloudwatch get-metric-statistics --namespace ${ expectedNamespace } --metric-name ColdStart --start-time ${ Math . floor (
97
- adjustedStartTime . getTime ( ) / 1000
98
- ) } --end-time ${ Math . floor (
99
- endTime . getTime ( ) / 1000
100
- ) } --statistics 'Sum' --period 60 --dimensions '${ JSON . stringify ( [
101
- { Name : 'service' , Value : expectedServiceName } ,
102
- ] ) } '`
103
- ) ;
104
91
const coldStartMetricStat = await cloudwatchClient . send (
105
92
new GetMetricStatisticsCommand ( {
106
93
Namespace : expectedNamespace ,
@@ -125,7 +112,7 @@ describe('Metrics E2E tests, manual usage', () => {
125
112
126
113
describe ( 'Default and extra dimensions' , ( ) => {
127
114
it (
128
- 'should produce a Metric with the default and extra one dimensions' ,
115
+ 'produces a Metric with the default and extra one dimensions' ,
129
116
async ( ) => {
130
117
const {
131
118
EXPECTED_NAMESPACE : expectedNamespace ,
@@ -165,15 +152,6 @@ describe('Metrics E2E tests, manual usage', () => {
165
152
startTime . getTime ( ) - 3 * ONE_MINUTE
166
153
) ;
167
154
const endTime = new Date ( new Date ( ) . getTime ( ) + ONE_MINUTE ) ;
168
- console . log (
169
- `Manual command: aws cloudwatch get-metric-statistics --namespace ${ expectedNamespace } --metric-name ${ expectedMetricName } --start-time ${ Math . floor (
170
- adjustedStartTime . getTime ( ) / 1000
171
- ) } --end-time ${ Math . floor (
172
- endTime . getTime ( ) / 1000
173
- ) } --statistics 'Sum' --period 60 --dimensions '${ JSON . stringify (
174
- expectedDimensions
175
- ) } '`
176
- ) ;
177
155
const metricStat = await cloudwatchClient . send (
178
156
new GetMetricStatisticsCommand ( {
179
157
Namespace : expectedNamespace ,
0 commit comments