This file contains hidden or 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
-- Logs begin at Sat 2019-08-17 22:14:05 UTC, end at Wed 2019-08-21 12:29:35 UTC. -- | |
Aug 17 23:44:16 node2 autopropose[12844]: Response: Success! Block a28e355994... created and added. | |
Aug 17 23:45:00 node2 autopropose[12844]: Proposing | |
Aug 18 04:48:36 node2 autopropose[12844]: Response: Success! Block 4662f08b49... created and added. | |
Aug 18 04:49:00 node2 autopropose[12844]: Proposing | |
Aug 18 11:27:47 node2 autopropose[12844]: Response: Success! Block 26f9d47e0b... created and added. | |
Aug 18 11:28:00 node2 autopropose[12844]: Proposing | |
Aug 18 15:39:11 node2 autopropose[12844]: Response: Success! Block 9c39aed389... created and added. | |
Aug 18 15:40:00 node2 autopropose[12844]: Proposing | |
Aug 18 18:35:08 node2 autopropose[12844]: Response: Success! Block 6eebb83315... created and added. |
This file contains hidden or 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
THat's |
This file contains hidden or 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
2332c0e3219570eb |
This file contains hidden or 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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
This file contains hidden or 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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
This file contains hidden or 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
export RD_OPTION_BONDS_FILE_URL="https://files.rchain-dev.tk/bonds.txt" | |
export RD_OPTION_BOND_BASE_AMOUNT="1000" | |
export RD_OPTION_CLEAN_DATA="no" | |
export RD_OPTION_DEBUG="no" | |
export RD_OPTION_NETWORK_ID="devnet2" | |
export RD_OPTION_RNODE_DOCKER_IMAGE="rchain/rnode:dev" | |
export RD_OPTION_RNODE_LAUNCHER_ARGS="-J-Xms4g -J-Xmx8g -XX:MaxDirectMemorySize=1g -Djdk.nio.maxCachedBufferSize=262144 -Dkamon.trace.sampler=always -Dkamon.trace.reporter-queue-size=16384" | |
export RD_OPTION_RNODE_RUN_ARGS="--map-size 1099511627776 --zipkin" | |
export RD_OPTION_STOP_NODE="yes" | |
export RD_OPTION_WAIT_TIME="3600" |
This file contains hidden or 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
2019-09-25 23:50:33,987 [loop-47] DEBUG coop.rchain.comm.rp.Connect$ - Connecting to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 23:50:33,987 [loop-47] DEBUG coop.rchain.comm.rp.Connect$ - Initialize protocol handshake to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 23:50:33,987 [loop-47] DEBUG coop.rchain.comm.transport.GrpcTransportClient - Creating new channel to peer rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 23:50:38,991 [loop-63] DEBUG coop.rchain.comm.rp.Connect$ - Connecting to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 23:50:38,991 [loop-63] DEBUG coop.rchain.comm.rp.Connect$ - Initialize protocol handshake to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 23:50:38,991 [loop-63] DEBUG coop.rchain.comm.t |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
2019-09-25 21:20:31,494 [loop-47] DEBUG coop.rchain.comm.rp.Connect$ - Initialize protocol handshake to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 21:20:31,494 [loop-47] DEBUG coop.rchain.comm.transport.GrpcTransportClient - Creating new channel to peer rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 21:20:36,500 [loop-47] DEBUG coop.rchain.comm.rp.Connect$ - Connecting to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 21:20:36,500 [loop-47] DEBUG coop.rchain.comm.rp.Connect$ - Initialize protocol handshake to rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 21:20:36,500 [loop-47] DEBUG coop.rchain.comm.transport.GrpcTransportClient - Creating new channel to peer rnode://[email protected]?protocol=40400&discovery=40404 | |
2019-09-25 21:20:36,613 [loop-46 |
This file contains hidden or 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
#!/usr/bin/env python3 | |
import re | |
from subprocess import check_output | |
from typing import Iterator | |
class BadCommitEx(Exception): | |
def __init__(self, log_line): |
This file contains hidden or 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
#!/usr/bin/env python3 | |
import re | |
from subprocess import check_output | |
from typing import Iterator | |
class BadCommitEx(Exception): | |
def __init__(self, log_line): |