mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-30 03:01:39 +00:00
257 lines
7.8 KiB
Text
257 lines
7.8 KiB
Text
|
|
mlr --ijson --ojson --from ./reg-test/input/flatten-input-2.json json-stringify
|
|
{
|
|
"hostname": "\"localhost\"",
|
|
"pid": "12345",
|
|
"req": "{\"id\": 6789, \"method\": \"GET\", \"path\": \"api/check\", \"host\": \"foo.bar\", \"headers\": {\"host\": \"bar.baz\", \"user-agent\": \"browser\"}}",
|
|
"res": "{\"status_code\": 200, \"header\": {\"content-type\": \"text\", \"content-encoding\": \"plain\"}}",
|
|
"empty1": "{}",
|
|
"empty2": "[]",
|
|
"wrapper": "{\"empty3\": {}, \"emtpy4\": []}"
|
|
}
|
|
|
|
mlr --ijson --oxtab --from ./reg-test/input/flatten-input-2.json json-stringify then flatten
|
|
hostname "localhost"
|
|
pid 12345
|
|
req {"id": 6789, "method": "GET", "path": "api/check", "host": "foo.bar", "headers": {"host": "bar.baz", "user-agent": "browser"}}
|
|
res {"status_code": 200, "header": {"content-type": "text", "content-encoding": "plain"}}
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper {"empty3": {}, "emtpy4": []}
|
|
|
|
mlr --ijson --ojson --from ./reg-test/input/flatten-input-2.json json-stringify -f req
|
|
{
|
|
"hostname": "localhost",
|
|
"pid": 12345,
|
|
"req": "{\"id\": 6789, \"method\": \"GET\", \"path\": \"api/check\", \"host\": \"foo.bar\", \"headers\": {\"host\": \"bar.baz\", \"user-agent\": \"browser\"}}",
|
|
"res": {
|
|
"status_code": 200,
|
|
"header": {
|
|
"content-type": "text",
|
|
"content-encoding": "plain"
|
|
}
|
|
},
|
|
"empty1": {},
|
|
"empty2": [],
|
|
"wrapper": {
|
|
"empty3": {},
|
|
"emtpy4": []
|
|
}
|
|
}
|
|
|
|
mlr --ijson --oxtab --from ./reg-test/input/flatten-input-2.json json-stringify -f req then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req {"id": 6789, "method": "GET", "path": "api/check", "host": "foo.bar", "headers": {"host": "bar.baz", "user-agent": "browser"}}
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --ijson --ojson --from ./reg-test/input/flatten-input-2.json json-stringify -f req --jvstack
|
|
{
|
|
"hostname": "localhost",
|
|
"pid": 12345,
|
|
"req": "{\n \"id\": 6789,\n \"method\": \"GET\",\n \"path\": \"api/check\",\n \"host\": \"foo.bar\",\n \"headers\": {\n \"host\": \"bar.baz\",\n \"user-agent\": \"browser\"\n }\n}",
|
|
"res": {
|
|
"status_code": 200,
|
|
"header": {
|
|
"content-type": "text",
|
|
"content-encoding": "plain"
|
|
}
|
|
},
|
|
"empty1": {},
|
|
"empty2": [],
|
|
"wrapper": {
|
|
"empty3": {},
|
|
"emtpy4": []
|
|
}
|
|
}
|
|
|
|
mlr --ijson --ojson --from ./reg-test/input/flatten-input-2.json json-stringify -f req --no-jvstack
|
|
{
|
|
"hostname": "localhost",
|
|
"pid": 12345,
|
|
"req": "{\"id\": 6789, \"method\": \"GET\", \"path\": \"api/check\", \"host\": \"foo.bar\", \"headers\": {\"host\": \"bar.baz\", \"user-agent\": \"browser\"}}",
|
|
"res": {
|
|
"status_code": 200,
|
|
"header": {
|
|
"content-type": "text",
|
|
"content-encoding": "plain"
|
|
}
|
|
},
|
|
"empty1": {},
|
|
"empty2": [],
|
|
"wrapper": {
|
|
"empty3": {},
|
|
"emtpy4": []
|
|
}
|
|
}
|
|
|
|
mlr --j2x flatten
|
|
hostname "localhost"
|
|
pid 12345
|
|
req {"id": 6789, "method": "GET", "path": "api/check", "host": "foo.bar", "headers": {"host": "bar.baz", "user-agent": "browser"}}
|
|
res {"status_code": 200, "header": {"content-type": "text", "content-encoding": "plain"}}
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper {"empty3": {}, "emtpy4": []}
|
|
|
|
mlr --j2x json-parse then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --j2x flatten
|
|
hostname "localhost"
|
|
pid 12345
|
|
req {
|
|
"id": 6789,
|
|
"method": "GET",
|
|
"path": "api/check",
|
|
"host": "foo.bar",
|
|
"headers": {
|
|
"host": "bar.baz",
|
|
"user-agent": "browser"
|
|
}
|
|
}
|
|
res {
|
|
"status_code": 200,
|
|
"header": {
|
|
"content-type": "text",
|
|
"content-encoding": "plain"
|
|
}
|
|
}
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper {
|
|
"empty3": {},
|
|
"emtpy4": []
|
|
}
|
|
|
|
mlr --j2x json-parse then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --j2x flatten
|
|
hostname "localhost"
|
|
pid 12345
|
|
req {"id": 6789, "method": "GET", "path": "api/check", "host": "foo.bar", "headers": {"host": "bar.baz", "user-agent": "browser"}}
|
|
res {"status_code": 200, "header": {"content-type": "text", "content-encoding": "plain"}}
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper {"empty3": {}, "emtpy4": []}
|
|
|
|
mlr --j2x json-parse then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --ijson --oxtab json-parse -f req then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --xtab json-parse -f req then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --ijson --oxtab json-parse -f req then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|
|
mlr --ijson --oxtab json-parse -f req then flatten
|
|
hostname localhost
|
|
pid 12345
|
|
req.id 6789
|
|
req.method GET
|
|
req.path api/check
|
|
req.host foo.bar
|
|
req.headers.host bar.baz
|
|
req.headers.user-agent browser
|
|
res.status_code 200
|
|
res.header.content-type text
|
|
res.header.content-encoding plain
|
|
empty1 {}
|
|
empty2 []
|
|
wrapper.empty3 {}
|
|
wrapper.emtpy4 []
|
|
|