|
1 | 1 | ## helloworld |
2 | 2 |
|
3 | | -this example handles http request/response headers events and log all headers. |
| 3 | +this example periodically logs the current time in nanoseconds |
4 | 4 |
|
5 | | - |
6 | | -```bash |
7 | | -proxy_1 | [2020-03-25 09:04:56.149][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127096149656000 |
8 | | -proxy_1 | [2020-03-25 09:04:56.154][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127096154901000 |
9 | | -proxy_1 | [2020-03-25 09:04:56.172][16][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127096172849000 |
10 | | -proxy_1 | [2020-03-25 09:04:56.174][15][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127096174829000 |
11 | | -proxy_1 | [2020-03-25 09:04:56.177][14][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127096177651000 |
12 | | -proxy_1 | [2020-03-25 09:04:57.149][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127097149361000 |
13 | | -proxy_1 | [2020-03-25 09:04:57.155][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127097155247000 |
14 | | -proxy_1 | [2020-03-25 09:04:57.174][16][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127097174066000 |
15 | | -proxy_1 | [2020-03-25 09:04:57.176][15][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127097176042000 |
16 | | -proxy_1 | [2020-03-25 09:04:57.178][14][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127097178863000 |
17 | | -proxy_1 | [2020-03-25 09:04:58.149][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127098149674000 |
18 | | -proxy_1 | [2020-03-25 09:04:58.155][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127098155890000 |
19 | | -proxy_1 | [2020-03-25 09:04:58.173][16][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127098173918000 |
20 | | -proxy_1 | [2020-03-25 09:04:58.176][15][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127098176045000 |
21 | | -proxy_1 | [2020-03-25 09:04:58.178][14][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127098178962000 |
22 | | -proxy_1 | [2020-03-25 09:04:59.150][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127099150824000 |
23 | | -proxy_1 | [2020-03-25 09:04:59.156][1][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127099156638000 |
24 | | -proxy_1 | [2020-03-25 09:04:59.174][16][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127099174223000 |
25 | | -proxy_1 | [2020-03-25 09:04:59.176][15][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127099176272000 |
26 | | -proxy_1 | [2020-03-25 09:04:59.179][14][info][wasm] [external/envoy/source/extensions/common/wasm/context.cc:1077] wasm log my_root_id: OnTick on 1, it's 1585127099179191000 |
| 5 | +``` |
| 6 | +wasm log helloworld: proxy_on_vm_start from Go! |
| 7 | +wasm log helloworld: proxy_on_vm_start from Go! |
| 8 | +wasm log helloworld: OnTick on 1, it's 1601543078943978000 |
| 9 | +wasm log helloworld: OnTick on 1, it's 1601543078947916000 |
| 10 | +wasm log helloworld: OnTick on 1, it's 1601543078951979000 |
| 11 | +wasm log helloworld: OnTick on 1, it's 1601543079947462000 |
| 12 | +wasm log helloworld: OnTick on 1, it's 1601543079951503000 |
| 13 | +wasm log helloworld: OnTick on 1, it's 1601543079955484000 |
27 | 14 | ``` |
0 commit comments