File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -39,19 +39,11 @@ The status api server is used to record and query events. Events can be added th
39
39
$ go run cmd/status-api/*
40
40
41
41
# Add events
42
- $ echo 111 > pipe.fifo
43
- $ curl localhost:8082/api/v1/new_event? message=222
42
+ $ echo " hello world " > pipe.fifo
43
+ $ curl localhost:8082/api/v1/new_event? message=this+is+a+test
44
44
45
45
# Query events (timestamp in UTC)
46
46
$ curl -s localhost:8082/api/v1/events | jq -r ' (.[] | [.received_at, .message]) | @tsv'
47
- 2024-09-21T14:35:37.674863Z 111
48
- 2024-09-21T14:35:42.486016Z 222
47
+ 2024-09-24T10:45:50.774339Z hello world
48
+ 2024-09-24T10:46:02.01221Z this is a test
49
49
```
50
-
51
- ---
52
-
53
- ## Next Steps
54
-
55
- These partly overlap with https://github.com/flashbots/cvm-reverse-proxy :
56
- - Server that verifies client-side aTLS certificate
57
- - Client that sends client-side aTLS certificate
You can’t perform that action at this time.
0 commit comments