@@ -68,9 +68,9 @@ test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
68
68
'http.user_agent' : 'axios/1.6.7' ,
69
69
'http.flavor' : '1.1' ,
70
70
'net.transport' : 'ip_tcp' ,
71
- 'net.host.ip' : '127.0.0.1' ,
71
+ 'net.host.ip' : expect . any ( String ) ,
72
72
'net.host.port' : expect . any ( Number ) ,
73
- 'net.peer.ip' : '127.0.0.1' ,
73
+ 'net.peer.ip' : expect . any ( String ) ,
74
74
'net.peer.port' : expect . any ( Number ) ,
75
75
'http.status_code' : 200 ,
76
76
'http.status_text' : 'OK' ,
@@ -103,9 +103,9 @@ test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
103
103
'http.target' : '/test-inbound-headers' ,
104
104
'http.flavor' : '1.1' ,
105
105
'net.transport' : 'ip_tcp' ,
106
- 'net.host.ip' : '127.0.0.1' ,
106
+ 'net.host.ip' : expect . any ( String ) ,
107
107
'net.host.port' : expect . any ( Number ) ,
108
- 'net.peer.ip' : '127.0.0.1' ,
108
+ 'net.peer.ip' : expect . any ( String ) ,
109
109
'net.peer.port' : expect . any ( Number ) ,
110
110
'http.status_code' : 200 ,
111
111
'http.status_text' : 'OK' ,
@@ -184,13 +184,13 @@ test('Propagates trace for outgoing fetch requests', async ({ baseURL }) => {
184
184
'net.host.name' : 'localhost' ,
185
185
'http.method' : 'GET' ,
186
186
'http.scheme' : 'http' ,
187
- 'http.target' : '/test-outgoing-http ' ,
187
+ 'http.target' : '/test-outgoing-fetch ' ,
188
188
'http.user_agent' : 'axios/1.6.7' ,
189
189
'http.flavor' : '1.1' ,
190
190
'net.transport' : 'ip_tcp' ,
191
- 'net.host.ip' : '127.0.0.1' ,
191
+ 'net.host.ip' : expect . any ( String ) ,
192
192
'net.host.port' : expect . any ( Number ) ,
193
- 'net.peer.ip' : '127.0.0.1' ,
193
+ 'net.peer.ip' : expect . any ( String ) ,
194
194
'net.peer.port' : expect . any ( Number ) ,
195
195
'http.status_code' : 200 ,
196
196
'http.status_text' : 'OK' ,
@@ -223,9 +223,9 @@ test('Propagates trace for outgoing fetch requests', async ({ baseURL }) => {
223
223
'http.target' : '/test-inbound-headers' ,
224
224
'http.flavor' : '1.1' ,
225
225
'net.transport' : 'ip_tcp' ,
226
- 'net.host.ip' : '127.0.0.1' ,
226
+ 'net.host.ip' : expect . any ( String ) ,
227
227
'net.host.port' : expect . any ( Number ) ,
228
- 'net.peer.ip' : '127.0.0.1' ,
228
+ 'net.peer.ip' : expect . any ( String ) ,
229
229
'net.peer.port' : expect . any ( Number ) ,
230
230
'http.status_code' : 200 ,
231
231
'http.status_text' : 'OK' ,
0 commit comments