decode actor address and revamt the dashboard
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
parent
032e59907b
commit
5f4127859e
File diff suppressed because it is too large
Load Diff
@ -14,6 +14,7 @@ import (
|
|||||||
"github.com/filecoin-project/lotus/chain/actors"
|
"github.com/filecoin-project/lotus/chain/actors"
|
||||||
"github.com/filecoin-project/lotus/chain/address"
|
"github.com/filecoin-project/lotus/chain/address"
|
||||||
"github.com/filecoin-project/lotus/chain/types"
|
"github.com/filecoin-project/lotus/chain/types"
|
||||||
|
"github.com/multiformats/go-multihash"
|
||||||
|
|
||||||
_ "github.com/influxdata/influxdb1-client"
|
_ "github.com/influxdata/influxdb1-client"
|
||||||
models "github.com/influxdata/influxdb1-client/models"
|
models "github.com/influxdata/influxdb1-client/models"
|
||||||
@ -215,7 +216,13 @@ func RecordTipsetMessagesPoints(ctx context.Context, api api.FullNode, pl *Point
|
|||||||
}
|
}
|
||||||
|
|
||||||
p = NewPoint("chain.message_count", 1)
|
p = NewPoint("chain.message_count", 1)
|
||||||
p.AddTag("actor", actor.Code.String())
|
|
||||||
|
dm, err := multihash.Decode(actor.Code.Hash())
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
p.AddTag("actor", string(dm.Digest))
|
||||||
p.AddTag("method", fmt.Sprintf("%d", msg.Message.Method))
|
p.AddTag("method", fmt.Sprintf("%d", msg.Message.Method))
|
||||||
p.AddTag("exitcode", fmt.Sprintf("%d", recp[i].ExitCode))
|
p.AddTag("exitcode", fmt.Sprintf("%d", recp[i].ExitCode))
|
||||||
pl.AddPoint(p)
|
pl.AddPoint(p)
|
||||||
|
Loading…
Reference in New Issue
Block a user