You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1592,24 +1592,38 @@ $ http --print=Hh PUT pie.dev/put hello=world
1592
1592
The response metadata section currently includes the total time elapsed. It’s the number of seconds between opening the network connection and downloading the last byte of response the body.
1593
1593
1594
1594
1595
-
To _only_ show the response metadata, use `--meta, -m` (analogically to `--headers, -h` and `--body, -b`):
1595
+
To _only_ show the request, and response metadata, use `--meta, -m` (analogically to `--headers, -h` and `--body, -b`):
1596
1596
1597
1597
```bash
1598
1598
$ http --meta pie.dev/delay/1
1599
1599
```
1600
1600
1601
1601
```console
1602
+
Connected to: 2a06:98c1:3120::2 port 443
1603
+
Connection secured using: TLSv1.3 with AES-256-GCM-SHA384
1604
+
Server certificate: commonName="pie.dev"; DNS="*.pie.dev"; DNS="pie.dev"
The [extra verbose `-vv` output](#extra-verbose-output) includes the meta section by default. You can also show it in combination with other parts of the exchange via [`--print=m`](#what-parts-of-the-http-exchange-should-be-printed). For example, here we print it together with the response headers:
1606
1613
1607
1614
```bash
1608
-
$ http --print=hm pie.dev/get
1615
+
$ https --print=hm pie.dev/get
1609
1616
```
1610
1617
1611
1618
```http
1612
-
HTTP/1.1 200 OK
1619
+
Connected to: 2a06:98c1:3120::2 port 443
1620
+
Connection secured using: TLSv1.3 with AES-256-GCM-SHA384
1621
+
Server certificate: commonName="pie.dev"; DNS="*.pie.dev"; DNS="pie.dev"
0 commit comments