PC1 可以用关键字 seal > seal_pre_commit_phase1
到日志里查询,然后用格式化输出
grep "seal > seal_pre_commit_phase1" worker-3001-20210801-073156.log |awk -F' ' '{print $6 ", "$5 ", " $1}'
PC1并行输出不大好看,但你可以抄到EXCEL为所欲为^_^
如果查单个Sector的话就简单用ID去查就好
grep "SectorId(5242)" worker-3001-20210801-073156.log
2021-08-12T07:58:04.323 INFO filecoin_proofs::api::seal > seal_pre_commit_phase1:start: SectorId(5242)
2021-08-12T11:23:08.407 INFO filecoin_proofs::api::seal > seal_pre_commit_phase1:finish: SectorId(5242)
和PC1一样,只是关键字换成seal > seal_pre_commit_phase2
不过PC2的输出则看不到SECTOR ID
lotus-worker info
Worker version: 1.1.0
CLI version: lotus-worker version 1.11.1-dev+mainnet+git.f7f5fd480
Session: 8c7dee24-2701-4797-a65b-1d2678079b35
Enabled: true
Hostname: worker1
CPUs: 32; GPUs: [GeForce RTX 2080 Ti]
RAM: 1.969 TiB; Swap: 0 B
Reserved memory: 319.2 GiB
Task types: FIN GET UNS C1
5e044125-85e1-4bb1-93bb-19bd0c0ea0a8:
Weight: 10; Use: Seal
Local: lotus-worker/worker-dir
b75f86c0-5ccd-4680-94d6-20f339287782:
Weight: 20; Use: Store
Local: /home/worker/mnt/worker1-final
lotus-worker tasks disable PC1
lotus-worker set --enabled=false
lotus-worker storage attach --init --weight=20 --store 新存储目录
用下面命令可以在MINER日志查看爆块信息, 假设你的log文件为lotus-miner.log.
grep "\"isWinner\": true" lotus-miner.log -B 1
lotus-miner.log-2021-08-10T07:24:11.216+0800 INFO miner miner/miner.go:565 mined new block {"cid": "bafy2bzacec7tnd34djdobimxxxxxxeunnw7cxwimatr7lfal6ooxqp4kw", "height": 1008169, "miner": "f010xxxxx", "parents": ["f0695014","f0154294","f0461791"], "parentTipset": "{bafy2bzacebr3yvk33nmwbf5vbb5yfiv4kslt63gvovzrzmuin53qioffdsg3c,bafy2bzacebpk6us6efd23tw6xtrdf5pakybshnvt6trdeoyevejjtmte6ifnw,bafy2bzaceb3n7qxher5p7zdxit2rn4r6hcuxzitai325fwpe6dfxhvzeh4gyu}", "took": 5.127382263}
lotus-miner.log:2021-08-10T07:24:11.216+0800 INFO miner miner/miner.go:475 completed mineOne {"tookMilliseconds": 5127, "forRound": 1008169, "baseEpoch": 1008168, "baseDeltaSeconds": 6, "nullRounds": 0, "lateStart": false, "beaconEpoch": 1104013, "lookbackEpochs": 900, "networkPowerAtLookback": "10172966243152592896", "minerPowerAtLookback": "148330990534656", "isEligible": true, "isWinner": true, "error": null}
以上为成功,如果出现WARN则为爆块失败。