mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-21 12:06:45 +01:00
Update man pages
This commit is contained in:
parent
3dee984eb9
commit
3f5d24a6c1
@ -1,3 +1,5 @@
|
||||
- 0.8.3
|
||||
* Update man pages
|
||||
- 0.8.2
|
||||
* Handle undefined content-key argument
|
||||
- 0.8.1
|
||||
|
@ -14,5 +14,3 @@ rules_data_args = [
|
||||
def to_config_names(v):
|
||||
v = v.upper()
|
||||
return ('ETHMONITOR_' + v, 'ETHMONITOR_X_' + v)
|
||||
|
||||
|
||||
|
@ -29,14 +29,19 @@ Rendering filters will be executed in order, and the first filter to return \fIF
|
||||
|
||||
.SH DEFINING FILTERS
|
||||
|
||||
Filters will strictly be executed in the order which they are defined on the command line.
|
||||
|
||||
A python module used for filter must fulfill two conditions:
|
||||
|
||||
.IP
|
||||
1. It must provide a class named \fIFilter\fP in the package base namespace.
|
||||
.IP
|
||||
2. The \fIFilter\fP class must include a method named \fIfilter\fP with the signature \fIdef filter(self, conn, block, tx, db_session=None)\fP.
|
||||
2. The \fIFilter\fP class must extend the \fIchainsyncer.filter.SyncFilter\fP interface, and at least override the \fIfilter\fP method.
|
||||
|
||||
Filters will strictly be executed in the order which they are defined on the command line.
|
||||
|
||||
.SS SYNCER AND FILTER CONTEXT
|
||||
|
||||
Key-value pairs specified with `--context-key` will be passed to the filter's \fIprepare\fP method, aswell as the \fIctx\fP parameter of the \fIfilter\fP method.
|
||||
|
||||
|
||||
.SH FURTHER READING
|
||||
|
@ -13,3 +13,4 @@ storetx Store transaction data in cache for matching transactions. Requires \fB-
|
||||
storeblock Store block data in cache for matching transactions. Requires \fB--cache-dir\fP. --store-block-data
|
||||
renderer Add output renderer filter to all matched transactions. The argument must be a python module path. Several renderers may be added by supplying the option multiple times. See \fBRENDERERS\fP section of \fBeth-monitor (1)\fP for more details. --renderer module
|
||||
filter Add code execution filter to all matched transactions. The argument must be a python module path. Several filters may be added by supplying the option multiple times. Filters will be executed in the order the options are given. See \fBDEFINING FILTERS\fP section of \fBeth-monitor (1)\fP for more details. --filter module
|
||||
context_key Add a key-value pair that gets passed to the syncer context. May be specified several times. --context-key key=value
|
||||
|
Loading…
Reference in New Issue
Block a user