-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
export internal status for monitor and debug
currently have exported the status of local node, peers, connections, transaction pool and ChainStore, which can be accessed from http://nodeip:HttpJsonPort/debug/vars Signed-off-by: laizy <[email protected]>
- Loading branch information
Showing
6 changed files
with
133 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,5 @@ Chain/* | |
/core/*/*_test.go | ||
/core/*/*/*_test.go | ||
/config/* | ||
node | ||
nodectl | ||
cscope* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package ChainStore | ||
|
||
import ( | ||
// . "DNA/common" | ||
"expvar" | ||
"fmt" | ||
// "time" | ||
) | ||
|
||
type storeStatus struct { | ||
CurrHeaderHeight uint32 | ||
CurrBlockHeight uint32 | ||
HeaderCache map[uint32]string | ||
BlockCache map[uint32]string | ||
HeaderIndex map[uint32]string | ||
} | ||
|
||
func expvarStore(store *ChainStore) func() interface{} { | ||
|
||
return func() interface{} { | ||
store.mu.RLock() | ||
defer store.mu.RUnlock() | ||
|
||
ss := storeStatus{ | ||
HeaderIndex: make(map[uint32]string, len(store.headerIndex)), | ||
CurrHeaderHeight: store.GetHeaderHeight(), | ||
CurrBlockHeight: store.GetHeight(), | ||
HeaderCache: make(map[uint32]string, len(store.headerCache)), | ||
BlockCache: make(map[uint32]string, len(store.blockCache)), | ||
} | ||
|
||
for k, hash := range store.headerIndex { | ||
ss.HeaderIndex[k] = fmt.Sprintf("%x", hash) | ||
} | ||
|
||
for k, header := range store.headerCache { | ||
ss.HeaderCache[header.Blockdata.Height] = fmt.Sprintf("%x", k) | ||
} | ||
for k, block := range store.blockCache { | ||
ss.BlockCache[block.Blockdata.Height] = fmt.Sprintf("%x", k) | ||
} | ||
|
||
return ss | ||
} | ||
|
||
} | ||
|
||
func ExportStoreStatus(store *ChainStore) { | ||
|
||
expvar.Publish("dna_store", expvar.Func(expvarStore(store))) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package node | ||
|
||
import ( | ||
. "DNA/net/protocol" | ||
"expvar" | ||
"fmt" | ||
"time" | ||
) | ||
|
||
type PeerStatus struct { | ||
State uint32 | ||
FlightHeights []uint32 | ||
LastContact string | ||
TryTimes uint32 | ||
Addr string // The address of the node | ||
Height uint64 // The node latest block height | ||
} | ||
|
||
type TxPoolStatus struct { | ||
TxCount int | ||
} | ||
|
||
type nodeStatus struct { | ||
Id uint64 | ||
TxnCnt uint64 // The transactions be transmit by this node | ||
RxTxnCnt uint64 // The transaction received by this node | ||
PublicKey string | ||
Peers []PeerStatus | ||
Connectings []string | ||
TxPool TxPoolStatus | ||
} | ||
|
||
func expvarNodeInfo(node *node) func() interface{} { | ||
|
||
return func() interface{} { | ||
pbkey, _ := node.publicKey.EncodePoint(true) | ||
|
||
ns := nodeStatus{ | ||
Id: node.id, | ||
TxnCnt: node.txnCnt, | ||
RxTxnCnt: node.rxTxnCnt, | ||
PublicKey: fmt.Sprintf("%x", pbkey), | ||
TxPool: TxPoolStatus{TxCount: node.TXNPool.Len()}, | ||
Connectings: node.ConnectingAddrs, | ||
} | ||
|
||
node.nbrNodes.RLock() | ||
for _, n := range node.nbrNodes.List { | ||
peer := PeerStatus{ | ||
State: n.state, | ||
Height: n.height, | ||
FlightHeights: n.flightHeights, | ||
LastContact: fmt.Sprintf("%gs", float64(time.Now().Sub(n.link.time))/float64(time.Second)), | ||
TryTimes: n.tryTimes, | ||
Addr: fmt.Sprintf("%s:%d", n.link.addr, n.link.port), | ||
} | ||
|
||
ns.Peers = append(ns.Peers, peer) | ||
} | ||
node.nbrNodes.RUnlock() | ||
|
||
return ns | ||
} | ||
} | ||
|
||
func ExportNodeStatus(nd Noder) { | ||
expvar.Publish("dna_node", expvar.Func(expvarNodeInfo(nd.(*node)))) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters