☠️⚠️ Work In Progress ⚠️☠️
Parse bitcoind logs into sensible data structures
Add package to Cargo.toml file
rust [dependencies] bitcoind-log-parser = "0.1.2"
```rust let bitcoindlogline = "2022-07-13T15:03:16Z [msghand] New outbound peer connected: version: 70016, blocks=744841, peer=303, peeraddr=15.188.83.52:8333 (block-relay-only)";
// Parse the log line string into a LogLine datastructure let logline: LogLine = bitcoindlogparser::parse(bitcoindlog_line).unwrap();
// Match the type of log line and do something based on it match &logline.message { LogMessage::NewOutboundPeerConnected() => { // do something if the log line represent a new outbound peer connected println!("{:#?}", &logline); } LogMessage::TransactionAddedToMempool() => { // do something if the log line represent a transaction has been added to the mempool println!("{:#?}", &logline); } LogMessage::Unknown { raw: _raw } => { // do something if the log line isn't recognized by bitcoind-log-parser println!("{:#?}", &logline); } _ => { println!("{}", line) } } ```
MIT © Joe Gesualdo