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
{{ message }}
This repository was archived by the owner on Mar 30, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ docker run duneanalytics/node-indexer --help
44
44
Also, we mention some of the options here:
45
45
46
46
### Log level
47
-
Use `LOG=debug` (`--log`) to emit more logs than the default `info` level. To emit less logs, use `warn`, or `error` (least).
47
+
The `log` flag (environment variable `LOG`) controls the log level. Use `--log debug`/`LOG=debug` to emit more logs than the default `info` level. To emit less logs, use `warn`, or `error` (least).
48
48
49
49
### Tuning RPC concurrency
50
50
The flag `--rpc-concurrency` (environment variable `RPC_CONCURRENCY`) specifies the number of threads (goroutines)
@@ -63,6 +63,7 @@ go run cmd/main.go ... --rpc-http-header header1:value1 --rpc-http-header header
63
63
64
64
Or with the environment variable `RPC_HTTP_HEADERS='header1:value1|header2:value2|...'`, i.e. a `|` separated list of pairs,
65
65
where each pair is separated by `:` (make sure to quote the full string to avoid creating a pipe).
66
+
66
67
```
67
-
docker run .--env RPC_HTTP_HEADERS='header1:value1|header2:value2' ... duneanalytics/node-indexer:<version>
68
+
docker run --env RPC_HTTP_HEADERS='header1:value1|header2:value2' ... duneanalytics/node-indexer:<version>
0 commit comments