Add prometheus for solo mode

pull/135/head
Baohua Yang 2019-01-09 17:08:03 +08:00
parent c83ec0d84d
commit 6e3d2432b4
45 changed files with 2315 additions and 1796 deletions

View File

@ -51,6 +51,8 @@ The following command will run the entire process (start a fabric network, creat
$ make test # Test with default fabric solo mode
```
[Prometheus](https://prometheus.io) dashboard listens at [http://localhost:9090](http://localhost:9090) to track the network statistics.
### Test with more modes
```bash

View File

@ -53,6 +53,7 @@ services:
hostname: orderer0.example.com
ports:
- "7050:7050"
- "8443:8443"
volumes:
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp:/var/hyperledger/orderer/msp
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/:/var/hyperledger/orderer/tls
@ -76,9 +77,10 @@ services:
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 7051:7051
- 7052:7052
- 7053:7053
- "7051:7051"
- "7052:7052"
- "7053:7053"
- "9443:9443"
peer1.org1.example.com:
extends:
@ -97,9 +99,9 @@ services:
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 8051:7051
- 8052:7052
- 8053:7053
- "8051:7051"
- "8052:7052"
- "8053:7053"
peer0.org2.example.com:
extends:
@ -118,9 +120,9 @@ services:
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 9051:7051
- 9052:7052
- 9053:7053
- "9051:7051"
- "9052:7052"
- "9053:7053"
peer1.org2.example.com:
extends:
@ -139,9 +141,9 @@ services:
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 10051:7051
- 10052:7052
- 10053:7053
- "10051:7051"
- "10052:7052"
- "10053:7053"
peer0.org3.example.com:
extends:
@ -160,9 +162,9 @@ services:
- ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 11051:7051
- 11052:7052
- 11053:7053
- "11051:7051"
- "11052:7052"
- "11053:7053"
cli: # client node
extends:
@ -178,6 +180,15 @@ services:
- ./solo/channel-artifacts:/tmp/channel-artifacts
- ./examples:/opt/gopath/src/examples
prometheus: # prometheus will pull metrics from fabric
extends:
file: base.yaml
service: prometheus
container_name: prometheus
hostname: prometheus
ports:
- "9090:9090"
#deprecated
event-listener:
extends:

View File

@ -31,8 +31,8 @@ services:
network_mode: ${NETWORK}
# Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go
environment:
- ORDERER_GENERAL_LOGLEVEL=INFO # default: INFO
- ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- FABRIC_LOGGING_SPEC=INFO # default: INFO
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1
- ORDERER_GENERAL_GENESISMETHOD=file # default: provisional
- ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block
@ -44,16 +44,19 @@ services:
- ORDERER_GENERAL_MAXMESSAGECOUNT=10
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_LISTENPORT=7050
- ORDERER_OPERATIONS_LISTENADDRESS=0.0.0.0:8443 # operation RESTful API
- ORDERER_METRICS_PROVIDER=prometheus # prometheus will pull metrics from orderer via /metrics RESTful API
#- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger
# enabled TLS
- ORDERER_GENERAL_TLS_ENABLED=true # default: false
- ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key
- ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt
- ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt]
volumes:
- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
#volumes:
#- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
expose:
- "7050" #
- "7050" # gRPC
- "8443" # Operation REST
#command: bash -c 'bash /tmp/orderer_build.sh; orderer start' # use this if to debug orderer
command: orderer start
@ -62,13 +65,15 @@ services:
restart: always
network_mode: ${NETWORK}
environment:
- CORE_LOGGING_LEVEL=INFO
- FABRIC_LOGGING_SPEC=INFO
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- CORE_PEER_ADDRESSAUTODETECT=false
- CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=${NETWORK} # uncomment this to use specific network
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false # whether this node is the org leader, default to false
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=0.0.0.0:7051 # change to external addr for peers in other orgs
- CORE_OPERATIONS_LISTENADDRESS=0.0.0.0:9443 # operation RESTful API
- CORE_METRICS_PROVIDER=prometheus # prometheus will pull metrics from fabric via /metrics RESTful API
- CORE_PEER_PROFILE_ENABLED=false
- CORE_PEER_TLS_ENABLED=true
- CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt
@ -77,13 +82,12 @@ services:
- CORE_CHIANCODE_LOGGING_LEVEL=DEBUG
- CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
volumes:
- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
#- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
# docker.sock is mapped as the default CORE_VM_ENDPOINT
- /var/run/docker.sock:/var/run/docker.sock
expose:
- "7051" # Grpc
- "7052" # Peer CLI
- "7053" # Peer Event
- "7051" # gRPC
- "9443" # Operation REST
#command: bash -c 'bash /tmp/peer_build.sh; peer node start'
command: peer node start
@ -93,13 +97,42 @@ services:
network_mode: ${NETWORK}
tty: true
environment:
- CORE_LOGGING_LEVEL=DEBUG
- CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message}
- FABRIC_LOGGING_SPEC=DEBUG
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message}
- CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true
- ORDERER_CA=/etc/hyperledger/fabric/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer
command: bash -c 'cd /tmp; source scripts/func.sh; while true; do sleep 20170504; done'
prometheus: # prometheus will pull metrics from fabric
image: prom/prometheus:v2.6.0
restart: always
network_mode: ${NETWORK}
tty: true
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
#deprecated
event-listener:
extends:
file: base.yaml
service: event-listener-base
container_name: fabric-event-listener
hostname: fabric-event-listener
environment:
- CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1
- CORE_PEER_LOCALMSPID=Org1MSP
- CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt
- CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key
- CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.Org1.example.com/msp
volumes:
- ./scripts:/tmp/scripts
- ./crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml
- ./crypto-config:/etc/hyperledger/fabric/crypto-config
- ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml
- ./solo/channel-artifacts:/tmp/channel-artifacts
- ./examples:/opt/gopath/src/examples
#deprecated
event-listener-base:
image: yeasy/hyperledger-fabric:${FABRIC_IMG_TAG}

View File

@ -56,6 +56,17 @@ services:
depends_on:
- orderer0.example.com
prometheus:
extends:
file: base-solo.yaml
service: prometheus
depends_on:
- orderer0.example.com
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
#networks:
# default:
# external:

View File

@ -0,0 +1,45 @@
# my global config
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
#- job_name: 'prometheus'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
#static_configs:
#- targets: ['localhost:9090']
- job_name: 'orderer0'
static_configs:
- targets: ['orderer0.example.com:8443']
- job_name: 'peer0_org1'
static_configs:
- targets: ['peer0.org1.example.com:9443']
- job_name: 'peer1_org1'
static_configs:
- targets: ['peer1.org1.example.com:9443']
- job_name: 'peer0_org2'
static_configs:
- targets: ['peer0.org2.example.com:9443']
- job_name: 'peer1_org2'
static_configs:
- targets: ['peer1.org2.example.com:9443']

View File

@ -39,12 +39,19 @@ for IMG in baseimage baseos couchdb kafka zookeeper; do
pull_image $HLF_IMG
done
# TODO: official core.yaml still use PROJECT_VERSION for fabric-baseos, however, dockerhub does not have the version
docker tag hyperledger/fabric-baseos:$ARCH-$BASE_IMG_TAG hyperledger/fabric-baseos:$FABRIC_IMG_TAG
# Only useful for debugging
# docker pull yeasy/hyperledger-fabric
echo "=== Pulling fabric images ${FABRIC_IMG_TAG} from fabric repo... ==="
for IMG in peer tools orderer ca ccenv tools; do
HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG
if ["$FABRIC_IMG_TAG" == "latest"]; then
HLF_IMG=hyperledger/fabric-${IMG}:$FABRIC_IMG_TAG
else
HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG
fi
pull_image $HLF_IMG
done

View File

@ -823,13 +823,13 @@
},
"signatures": [
{
"signature": "MEUCIQDFvfU5vfzQmUt9JAVHdb0VmaJgj8ZjcyHgYiN7kG7Y7wIgPelFhQvr1oN6CqSZx5aR+ZF99laG1dVldGjQCjnqvEA=",
"signature": "MEQCIA8ILQn7PayLVJ1t7Tev+TqvwcqlAgmBajzTh+UMUdZfAiAEdIHOkUiYHASKP+WQF6ZpM4k6rmHRiSKhdGMaqptLOw==",
"signature_header": {
"creator": {
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLekNDQWRHZ0F3SUJBZ0lSQU9CbUVKYjVPM1ZoTFkrOFJnbWZ2NHd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd4TWpFNU1EYzFPVEF3V2hjTk1qZ3hNakUyTURjMU9UQXcKV2pCc01Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFUE1BMEdBMVVFQ3hNR1kyeHBaVzUwTVI4d0hRWURWUVFEREJaQlpHMXBia0J2CmNtY3lMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFaXhFZ1lWZVkKTW9xQTdYaTI4Z1dhdEU1ZlVMWTBlNEZ3RmdNRjFTdjlEQ3drcmxkajRLekduc1hOalV1ZC8ydXppSnlwK29HSwp1c1dhNDl3cWlCRExuYU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEClZSMGpCQ1F3SW9BZ0xMeTJyd2xWa2QxazJlajB1RXZXN0JWK21CNjZKUU5STkNxL1pxb0JITkF3Q2dZSUtvWkkKemowRUF3SURTQUF3UlFJaEFOd1JNQXNTaEFCMndwc21pQjd4czlyNUlyWmVWUVRDMzJLRjN2UGN6dVZ3QWlBVwo4c3JOcjJGck1Nb1lhUHVGSExSNHBtWE1Kb3YvWlpTTE4rRlVkSDRkeGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==",
"mspid": "Org2MSP"
},
"nonce": "L49DS0iv+g81L4SqVqSuoznC5En/S1rb"
"nonce": "SZapNuN1GEhmIPV/vqHSGdldrHz3hrPW"
}
}
]
@ -839,7 +839,7 @@
"channel_id": "businesschannel",
"epoch": "0",
"extension": null,
"timestamp": "2018-12-19T08:04:13Z",
"timestamp": "2019-01-09T07:44:18Z",
"tls_cert_hash": null,
"tx_id": "",
"type": 2,
@ -850,11 +850,11 @@
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLekNDQWRHZ0F3SUJBZ0lSQU9CbUVKYjVPM1ZoTFkrOFJnbWZ2NHd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd4TWpFNU1EYzFPVEF3V2hjTk1qZ3hNakUyTURjMU9UQXcKV2pCc01Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFUE1BMEdBMVVFQ3hNR1kyeHBaVzUwTVI4d0hRWURWUVFEREJaQlpHMXBia0J2CmNtY3lMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFaXhFZ1lWZVkKTW9xQTdYaTI4Z1dhdEU1ZlVMWTBlNEZ3RmdNRjFTdjlEQ3drcmxkajRLekduc1hOalV1ZC8ydXppSnlwK29HSwp1c1dhNDl3cWlCRExuYU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEClZSMGpCQ1F3SW9BZ0xMeTJyd2xWa2QxazJlajB1RXZXN0JWK21CNjZKUU5STkNxL1pxb0JITkF3Q2dZSUtvWkkKemowRUF3SURTQUF3UlFJaEFOd1JNQXNTaEFCMndwc21pQjd4czlyNUlyWmVWUVRDMzJLRjN2UGN6dVZ3QWlBVwo4c3JOcjJGck1Nb1lhUHVGSExSNHBtWE1Kb3YvWlpTTE4rRlVkSDRkeGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==",
"mspid": "Org2MSP"
},
"nonce": "5lYnZJjAupF79hhXQkmtWjym58FI/kyL"
"nonce": "OEkn1rPnVo7o4Vxt/xz0GAR8OWtnCKX0"
}
}
},
"signature": "MEQCIHCZDM4PEMsxH7GcKvOhOm14NNGdFapC37AHXUDnnxB5AiBBccgfhrk6+XupyYeEiBHIjBFvO41/EuMAUC9CJuue3g=="
"signature": "MEUCIQCDWgCQ/4F/v3/jGCjb2ML/GkyJp02dkhd+PQjFyyHscAIgCkiG7/VsligZgsmagu2AjnHCgSVGvx+HxQ1uhJEEkF8="
}
},
"header": {
@ -862,7 +862,7 @@
"channel_id": "businesschannel",
"epoch": "0",
"extension": null,
"timestamp": "2018-12-19T08:04:13Z",
"timestamp": "2019-01-09T07:44:18Z",
"tls_cert_hash": null,
"tx_id": "",
"type": 1,
@ -873,23 +873,23 @@
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K",
"mspid": "OrdererMSP"
},
"nonce": "jyqXXK6m0ZTGRTz3b5zGX9WAxv4JAPLp"
"nonce": "6dvXzRe6/odqfJEK6NS7sJysp1KmApyi"
}
}
},
"signature": "MEUCIQC/JWbefLF4mubTKNyEQI0+WqO/POWIb6VnLNgd74KpQQIgGkBiiMpy1lKBmxlM9/0q92+QjA63VFVG12TirH41gsk="
"signature": "MEUCIQCI35a9IGGZs5Ls86FYxM6GPcGbYlJG44k0NHK5PByXDAIgcF2Ai4+z0mbHTGNoMlrfamJF6kVO2qiZoEzeBYTZ0bQ="
}
]
},
"header": {
"data_hash": "75BLIj/DecUtjU6viMms55o0cw8kNhVdeFBXZU6A5/c=",
"data_hash": "ifnJMQXYpc4F0Oz3g5Hk5kRADbswqqArSa6mUiUP7A8=",
"number": "2",
"previous_hash": "k/oI5UC0pANm4V0lznkahx3eIaWX8+XWdu/Sp9H9EyQ="
"previous_hash": "H0KpVcWpE8IX5036GoyxBGH9NbeigCkMOEQwmNqsZns="
},
"metadata": {
"metadata": [
"Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhhVSUKJcHs+1Jy41cCGc9hM3+ptL/Oxs+sSRjBEAiBIpN9nPFl/MCz3hvjVuIFaIsyYuxNgv9ST+DiPfYkSCQIgL+x+7L8qyCaVODOycbbHbi/1j6nUuDrsYD9oMDH/hM0=",
"CgIIAhL+BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFJSXBNQ3QvTGxIRjUxYmJlK0hGZDlrd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dOelU1TURCYUZ3MHlPREV5TVRZd056VTVNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkdYVVRzQWtTdHFia0VMUmxZaGozdXJzaDc0cDhjMGNvMXd2QWUramtBSS82aUM4CkNad3dyQkZvZXc5czBlK28wNEpsV1BMdFZoOUl2VUZyZ3BJOFlxR2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUlLeC9pVWRTRDAvTFFJbHgrWTIxb1NmbSticApRdFVvQ21jcWJjN3lHWGxqTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNieWhLZG53TVR6UFZZSS9TR3hpYjRtClNIOXA5VFZ3aGtTdHRhY0crdzBHQWlCY3RTNjZmYzJ4SXRLejhNMDgyZjVwQnJxUzBUNGtEWWZMMGRpZkYweTUKWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYsgK1kVEbI1xVBYWTi3SmmF/FRwt4c1XcEkcwRQIhAOYyq9c72I0Ij85/hovFFNEKUFAEfKrSFtii4g4jaWPvAiAjCon0oPpuxqgxU5I1AwiPCR2TTvvGFDGQvh1zl20DIQ==",
"Ev4GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhgcODkqPB3vDFhjIcdNHr13WEQDGaUrHGsSRzBFAiEAqyyMjxvXomxJ+EcAyorH4+LAkeEsLQ2I+MK43JOS5EoCIAPE+CqHpcianrSmKQ+y4fzjc/RpwzDjjf5O+ZJjYhXk",
"CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFJSXBNQ3QvTGxIRjUxYmJlK0hGZDlrd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dOelU1TURCYUZ3MHlPREV5TVRZd056VTVNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkdYVVRzQWtTdHFia0VMUmxZaGozdXJzaDc0cDhjMGNvMXd2QWUramtBSS82aUM4CkNad3dyQkZvZXc5czBlK28wNEpsV1BMdFZoOUl2VUZyZ3BJOFlxR2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUlLeC9pVWRTRDAvTFFJbHgrWTIxb1NmbSticApRdFVvQ21jcWJjN3lHWGxqTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNieWhLZG53TVR6UFZZSS9TR3hpYjRtClNIOXA5VFZ3aGtTdHRhY0crdzBHQWlCY3RTNjZmYzJ4SXRLejhNMDgyZjVwQnJxUzBUNGtEWWZMMGRpZkYweTUKWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYTFtjkrT6X/nCk2ueNCZoAniEhV1boy5JEkYwRAIgcKxReO67DIAtzU93uRDOSoIzVAr6rrr0ysEziO9sltgCIA+Tsc5xpJ5hbOfDm9MEQaCjhYaCLLgoy/M1s1ZBkILO",
"",
""
]

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
2018-12-19 08:04:01.931 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0
[002 12-19 08:04:02.02 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values:
2019-01-09 07:44:02.686 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0
[002 01-09 07:44:02.87 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values:
General.LedgerType = "file"
General.ListenAddress = "0.0.0.0"
General.ListenPort = 7050
@ -9,11 +9,19 @@
General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt]
General.TLS.ClientAuthRequired = false
General.TLS.ClientRootCAs = []
General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt]
General.Cluster.ListenAddress = ""
General.Cluster.ListenPort = 0
General.Cluster.ServerCertificate = ""
General.Cluster.ServerPrivateKey = ""
General.Cluster.ClientCertificate = ""
General.Cluster.ClientPrivateKey = ""
General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt]
General.Cluster.DialTimeout = 5s
General.Cluster.RPCTimeout = 7s
General.Cluster.ReplicationBufferSize = 20971520
General.Cluster.ReplicationPullTimeout = 5s
General.Cluster.ReplicationRetryTimeout = 5s
General.Cluster.ReplicationBackgroundRefreshInterval = 5m0s
General.Keepalive.ServerMinInterval = 1m0s
General.Keepalive.ServerInterval = 2h0m0s
General.Keepalive.ServerTimeout = 20s
@ -23,8 +31,6 @@
General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block"
General.Profile.Enabled = false
General.Profile.Address = "0.0.0.0:6060"
General.LogLevel = "INFO"
General.LogFormat = "%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}"
General.LocalMSPDir = "/var/hyperledger/orderer/msp"
General.LocalMSPID = "OrdererMSP"
General.BCCSP.ProviderName = "SW"
@ -33,6 +39,7 @@
General.BCCSP.SwOpts.Ephemeral = false
General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore"
General.BCCSP.SwOpts.DummyKeystore =
General.BCCSP.SwOpts.InmemKeystore =
General.BCCSP.PluginOpts =
General.Authentication.TimeWindow = 15m0s
FileLedger.Location = "/var/hyperledger/production/orderer"
@ -64,54 +71,105 @@
Kafka.Topic.ReplicationFactor = 3
Debug.BroadcastTraceDir = ""
Debug.DeliverTraceDir = ""
[003 12-19 08:04:02.07 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled
[004 12-19 08:04:02.09 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[005 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo
[006 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer:
Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot]
Operations.ListenAddress = "0.0.0.0:8443"
Operations.TLS.Enabled = false
Operations.TLS.PrivateKey = ""
Operations.TLS.Certificate = ""
Operations.TLS.RootCAs = []
Operations.TLS.ClientAuthRequired = false
Operations.TLS.ClientRootCAs = []
Metrics.Provider = "prometheus"
Metrics.Statsd.Network = "udp"
Metrics.Statsd.Address = "127.0.0.1:8125"
Metrics.Statsd.WriteInterval = 30s
Metrics.Statsd.Prefix = ""
[003 01-09 07:44:02.98 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled
[004 01-09 07:44:02.99 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[005 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo
[006 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer:
Version: 1.4.0
Commit SHA: development build
Go version: go1.10.4
Go version: go1.11.4
OS/Arch: linux/amd64
[007 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests
[008 12-19 08:04:07.61 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[009 12-19 08:04:07.62 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel
[00a 12-19 08:04:11.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59536: rpc error: code = Canceled desc = context canceled
[00b 12-19 08:04:11.68 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59538: rpc error: code = Canceled desc = context canceled
[00c 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59540: rpc error: code = Canceled desc = context canceled
[00d 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59542: rpc error: code = Canceled desc = context canceled
[00e 12-19 08:05:02.75 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59604: rpc error: code = Canceled desc = context canceled
[00f 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59622: rpc error: code = Canceled desc = context canceled
[010 12-19 08:05:49.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59636: rpc error: code = Canceled desc = context canceled
[011 12-19 08:05:58.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59686: rpc error: code = Canceled desc = context canceled
[012 12-19 08:05:58.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59688: rpc error: code = Canceled desc = context canceled
[013 12-19 08:05:58.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59690: rpc error: code = Canceled desc = context canceled
[014 12-19 08:05:59.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59692: rpc error: code = Canceled desc = context canceled
[015 12-19 08:05:59.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59694: rpc error: code = Canceled desc = context canceled
[016 12-19 08:05:59.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59696: rpc error: code = Canceled desc = context canceled
[017 12-19 08:05:59.93 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59698: rpc error: code = Canceled desc = context canceled
[018 12-19 08:06:00.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59700: rpc error: code = Canceled desc = context canceled
[019 12-19 08:06:00.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59702: rpc error: code = Canceled desc = context canceled
[01a 12-19 08:06:00.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59704: rpc error: code = Canceled desc = context canceled
[01b 12-19 08:06:00.91 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59706: rpc error: code = Canceled desc = context canceled
[01c 12-19 08:06:01.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59708: rpc error: code = Canceled desc = context canceled
[01d 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[01e 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[01f 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[020 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[021 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59712: rpc error: code = Canceled desc = context canceled
[022 12-19 08:06:09.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59710: rpc error: code = Canceled desc = context canceled
[023 12-19 08:06:12.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59734: rpc error: code = Canceled desc = context canceled
[024 12-19 08:06:12.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59736: rpc error: code = Canceled desc = context canceled
[025 12-19 08:06:12.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59740: rpc error: code = Canceled desc = context canceled
[026 12-19 08:06:13.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59742: rpc error: code = Canceled desc = context canceled
[027 12-19 08:06:13.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59744: rpc error: code = Canceled desc = context canceled
[028 12-19 08:06:13.40 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59746: rpc error: code = Canceled desc = context canceled
[029 12-19 08:06:13.64 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59748: rpc error: code = Canceled desc = context canceled
[02a 12-19 08:06:13.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59750: rpc error: code = Canceled desc = context canceled
[02b 12-19 08:06:14.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59752: rpc error: code = Canceled desc = context canceled
[02c 12-19 08:06:14.32 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59754: rpc error: code = Canceled desc = context canceled
[02d 12-19 08:06:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59756: rpc error: code = Canceled desc = context canceled
[02e 12-19 08:06:14.76 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59758: rpc error: code = Canceled desc = context canceled
[02f 12-19 08:06:14.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59760: rpc error: code = Canceled desc = context canceled
[030 12-19 08:06:15.14 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59762: rpc error: code = Canceled desc = context canceled
[031 12-19 08:06:15.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59764: rpc error: code = Canceled desc = context canceled
[007 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests
[008 01-09 07:44:10.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.886Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39098", "grpc.code": "OK", "grpc.call_duration": "70.6496ms"}
[009 01-09 07:44:10.96 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[00a 01-09 07:44:11.13 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel
[00b 01-09 07:44:11.14 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.869Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39096", "grpc.code": "OK", "grpc.call_duration": "270.7479ms"}
[00c 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39124: rpc error: code = Canceled desc = context canceled
[00d 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.935Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39124", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "60.6194ms"}
[00e 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39126: rpc error: code = Canceled desc = context canceled
[00f 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.95Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39126", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "47.1097ms"}
[010 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39138: rpc error: code = Canceled desc = context canceled
[011 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39138", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "102.0702ms"}
[012 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39140: rpc error: code = Canceled desc = context canceled
[013 01-09 07:44:18.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.203Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39140", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "96.6034ms"}
[014 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39198: rpc error: code = Canceled desc = context canceled
[015 01-09 07:45:07.90 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:25.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39198", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "42.7432064s"}
[016 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39278: rpc error: code = Canceled desc = context canceled
[017 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:55.258Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39278", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "250.1132ms"}
[018 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39294: rpc error: code = Canceled desc = context canceled
[019 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:58.185Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39294", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.2328ms"}
[01a 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39350: rpc error: code = Canceled desc = context canceled
[01b 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.586Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2651ms"}
[01c 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39352: rpc error: code = Canceled desc = context canceled
[01d 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.827Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.971ms"}
[01e 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39354: rpc error: code = Canceled desc = context canceled
[01f 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39354", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9028ms"}
[020 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39356: rpc error: code = Canceled desc = context canceled
[021 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.189Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39356", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.1919ms"}
[022 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39358: rpc error: code = Canceled desc = context canceled
[023 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.403Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39358", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7488ms"}
[024 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39360: rpc error: code = Canceled desc = context canceled
[025 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.679Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39360", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "22.3594ms"}
[026 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39362: rpc error: code = Canceled desc = context canceled
[027 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.928Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39362", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.5106ms"}
[028 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39364: rpc error: code = Canceled desc = context canceled
[029 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.21Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39364", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.4762ms"}
[02a 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39366: rpc error: code = Canceled desc = context canceled
[02b 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.451Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39366", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.4341ms"}
[02c 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39368: rpc error: code = Canceled desc = context canceled
[02d 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.662Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39368", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3884ms"}
[02e 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39370: rpc error: code = Canceled desc = context canceled
[02f 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.929Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39370", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4469ms"}
[030 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39372: rpc error: code = Canceled desc = context canceled
[031 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:07.205Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39372", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9044ms"}
[032 01-09 07:46:14.55 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[033 01-09 07:46:14.56 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[034 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[035 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[036 01-09 07:46:14.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39378: rpc error: code = Canceled desc = context canceled
[037 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.546Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "53.7333ms"}
[038 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39380: rpc error: code = Canceled desc = context canceled
[039 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.557Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39380", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.7004ms"}
[03a 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39422: rpc error: code = Canceled desc = context canceled
[03b 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.005Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39422", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.4789ms"}
[03c 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39424: rpc error: code = Canceled desc = context canceled
[03d 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.24Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39424", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.3809ms"}
[03e 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39426: rpc error: code = Canceled desc = context canceled
[03f 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.334Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39426", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.9631ms"}
[040 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39428: rpc error: code = Canceled desc = context canceled
[041 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.753Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39428", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "59.6872ms"}
[042 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39430: rpc error: code = Canceled desc = context canceled
[043 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39430", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.5318ms"}
[044 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39432: rpc error: code = Canceled desc = context canceled
[045 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.458Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39432", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.0921ms"}
[046 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39434: rpc error: code = Canceled desc = context canceled
[047 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.923Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39434", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.292ms"}
[048 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39436: rpc error: code = Canceled desc = context canceled
[049 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:20.56Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39436", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "65.7681ms"}
[04a 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39438: rpc error: code = Canceled desc = context canceled
[04b 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.084Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39438", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0362ms"}
[04c 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39440: rpc error: code = Canceled desc = context canceled
[04d 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.319Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39440", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.0573ms"}
[04e 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39442: rpc error: code = Canceled desc = context canceled
[04f 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.553Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39442", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.59ms"}
[050 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39444: rpc error: code = Canceled desc = context canceled
[051 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.87Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39444", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3057ms"}
[052 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39446: rpc error: code = Canceled desc = context canceled
[053 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.049Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39446", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.7464ms"}
[054 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39448: rpc error: code = Canceled desc = context canceled
[055 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.227Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39448", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3204ms"}
[056 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39450: rpc error: code = Canceled desc = context canceled
[057 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.49Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39450", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "51.0276ms"}

View File

@ -1,131 +1,185 @@
[001 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer:
[001 01-09 07:44:07.01 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer:
Version: 1.4.0
Commit SHA: development build
Go version: go1.10.4
Go version: go1.11.4
OS/Arch: linux/amd64
Chaincode:
Base Image Version: 0.4.13
Base Docker Namespace: hyperledger
Base Docker Label: org.hyperledger.fabric
Docker Namespace: hyperledger
[002 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt
[003 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider
[004 12-19 08:04:04.92 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized
[005 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized
[006 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051
[007 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[008 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051
[009 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[00a 12-19 08:04:04.97 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled
[00b 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com
[00c 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052
[00d 12-19 08:04:04.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered
[00e 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered
[00f 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered
[010 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered
[011 12-19 08:04:05.01 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051]
[012 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] peer0.org1.example.com:7051 <nil> <nil>}
[013 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started
[014 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed
[015 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[016 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed
[017 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[018 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed
[019 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[01a 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes
[01b 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000
[01c 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated
[01d 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01e 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01f 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Entry chaincode: name:"cscc"
[020 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block
[021 12-19 08:04:08.42 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[022 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=8ms state_commit=4ms)
[023 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block
[024 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[025 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[026 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about
[027 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1
[028 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed
[029 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[02a 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed
[02b 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[02c 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed
[02d 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[02e 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Exit chaincode: name:"cscc" (75ms)
[02f 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Entry chaincode: name:"cscc"
[030 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Exit chaincode: name:"cscc" (1ms)
[031 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Entry chaincode: name:"qscc"
[032 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Exit chaincode: name:"qscc" (1ms)
[033 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] : Becoming a leader
[034 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel
[035 12-19 08:04:14.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer
[036 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[037 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[038 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[039 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[03a 12-19 08:04:14.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 38ms
[03b 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=15ms state_commit=7ms)
[03c 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer
[03d 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[03e 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[03f 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[040 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[041 12-19 08:04:14.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 25ms
[042 12-19 08:04:14.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=18ms state_commit=2ms)
[043 12-19 08:04:18.79 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Entry chaincode: name:"lscc"
[044 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer
[045 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Exit chaincode: name:"lscc" (2ms)
[046 12-19 08:04:21.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Entry chaincode: name:"lscc"
[047 12-19 08:04:21.66 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"'
[048 12-19 08:05:02.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Exit chaincode: name:"lscc" (41173ms)
[049 12-19 08:05:04.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer
[04a 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 4ms
[04b 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02]
[04c 12-19 08:05:04.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 21ms (state_validation=0ms block_commit=14ms state_commit=3ms)
[04d 12-19 08:05:46.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Entry chaincode: name:"exp02"
[04e 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Exit chaincode: name:"exp02" (7ms)
[04f 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer
[050 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 0ms
[051 12-19 08:05:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 43ms (state_validation=0ms block_commit=27ms state_commit=4ms)
[052 12-19 08:05:50.08 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Entry chaincode: name:"exp02"
[053 12-19 08:05:50.09 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Exit chaincode: name:"exp02" (2ms)
[054 12-19 08:05:51.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer
[055 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms
[056 12-19 08:05:51.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 55ms (state_validation=0ms block_commit=48ms state_commit=4ms)
[057 12-19 08:05:52.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Entry chaincode: name:"exp02"
[058 12-19 08:05:52.36 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Exit chaincode: name:"exp02" (12ms)
[059 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Entry chaincode: name:"lscc"
[05a 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Exit chaincode: name:"lscc" (2ms)
[05b 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Entry chaincode: name:"lscc"
[05c 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Exit chaincode: name:"lscc" (1ms)
[05d 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Entry chaincode: name:"lscc"
[05e 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Exit chaincode: name:"lscc" (1ms)
[05f 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Entry chaincode: name:"lscc"
[060 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Exit chaincode: name:"lscc" (1ms)
[061 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Entry chaincode: name:"lscc"
[062 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Exit chaincode: name:"lscc" (1ms)
[063 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Entry chaincode: name:"qscc"
[064 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Exit chaincode: name:"qscc" (1ms)
[065 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Entry chaincode: name:"qscc"
[066 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Exit chaincode: name:"qscc" (1ms)
[067 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Entry chaincode: name:"cscc"
[068 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Exit chaincode: name:"cscc" (1ms)
[069 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Entry chaincode: name:"cscc"
[06a 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Exit chaincode: name:"cscc" (1ms)
[06b 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Entry chaincode: name:"cscc"
[06c 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Exit chaincode: name:"cscc" (1ms)
[06d 12-19 08:06:09.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer
[06e 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[06f 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set
[070 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations
[071 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about
[072 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[073 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[074 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[075 12-19 08:06:10.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 137ms
[076 12-19 08:06:10.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 125ms (state_validation=0ms block_commit=88ms state_commit=26ms)
[077 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Entry chaincode: name:"cscc"
[078 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Exit chaincode: name:"cscc" (0ms)
[079 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Entry chaincode: name:"qscc"
[07a 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Exit chaincode: name:"qscc" (1ms)
[002 01-09 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt
[003 01-09 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider
[004 01-09 07:44:07.11 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized
[005 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized
[006 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051
[007 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[008 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051
[009 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[00a 01-09 07:44:07.17 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled
[00b 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com
[00c 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052
[00d 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered
[00e 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered
[00f 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered
[010 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered
[011 01-09 07:44:07.21 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051]
[012 01-09 07:44:07.22 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9, Metadata:
[013 01-09 07:44:07.22 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started
[014 01-09 07:44:07.23 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed
[015 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[016 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed
[017 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[018 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed
[019 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[01a 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes
[01b 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000
[01c 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated
[01d 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01e 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01f 01-09 07:44:07.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.798Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.798Z", "grpc.peer_address": "172.24.0.6:47286", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "234.2µs"}
[020 01-09 07:44:07.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.801Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:17.801Z", "grpc.peer_address": "172.24.0.6:47286", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.8676ms"}
[021 01-09 07:44:07.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.835Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.834Z", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.9µs"}
[022 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Entry chaincode: name:"cscc"
[023 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block
[024 01-09 07:44:11.77 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[025 01-09 07:44:11.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=12ms state_commit=3ms)
[026 01-09 07:44:11.80 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block
[027 01-09 07:44:11.82 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[028 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about
[029 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[02a 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1
[02b 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed
[02c 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[02d 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed
[02e 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[02f 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed
[030 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[031 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Exit chaincode: name:"cscc" (117ms)
[032 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:11.764Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54838", "grpc.code": "OK", "grpc.call_duration": "119.5777ms"}
[033 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Entry chaincode: name:"cscc"
[034 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Exit chaincode: name:"cscc" (1ms)
[035 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:13.685Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54846", "grpc.code": "OK", "grpc.call_duration": "3.4696ms"}
[036 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Entry chaincode: name:"qscc"
[037 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Exit chaincode: name:"qscc" (3ms)
[038 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.763Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54854", "grpc.code": "OK", "grpc.call_duration": "5.1907ms"}
[039 01-09 07:44:16.82 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]]
[03a 01-09 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9 : Becoming a leader
[03b 01-09 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel
[03c 01-09 07:44:17.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer
[03d 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[03e 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[03f 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[040 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[041 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 43ms
[042 01-09 07:44:17.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:17.987Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:19.987Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "615.2µs"}
[043 01-09 07:44:17.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 19ms (state_validation=1ms block_commit=11ms state_commit=3ms)
[044 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.838Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "10.1629946s"}
[045 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:17.994Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:27.994Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "7.5798ms"}
[046 01-09 07:44:18.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer
[047 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[048 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[049 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[04a 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[04b 01-09 07:44:18.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 140ms
[04c 01-09 07:44:18.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 36ms (state_validation=0ms block_commit=24ms state_commit=6ms)
[04d 01-09 07:44:18.51 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.515Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.514Z", "grpc.peer_address": "172.24.0.6:47346", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "329.1µs"}
[04e 01-09 07:44:18.55 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.521Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.52Z", "grpc.peer_address": "172.24.0.6:47346", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.6283ms"}
[04f 01-09 07:44:18.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.559Z", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.8µs"}
[050 01-09 07:44:18.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.615Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.614Z", "grpc.peer_address": "172.24.0.4:41530", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "262.4µs"}
[051 01-09 07:44:18.65 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.655Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.654Z", "grpc.peer_address": "172.24.0.3:48218", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "303.5µs"}
[052 01-09 07:44:18.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.62Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.62Z", "grpc.peer_address": "172.24.0.4:41530", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "51.1887ms"}
[053 01-09 07:44:18.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.696Z", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "245.9µs"}
[054 01-09 07:44:18.73 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.659Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.659Z", "grpc.peer_address": "172.24.0.3:48218", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "75.7002ms"}
[055 01-09 07:44:18.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.76Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.758Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "108.9µs"}
[056 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.707Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "64.1179ms"}
[057 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.767Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.767Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.9574ms"}
[058 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.816Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.815Z", "grpc.peer_address": "172.24.0.3:48228", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "171.2µs"}
[059 01-09 07:44:18.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.821Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.82Z", "grpc.peer_address": "172.24.0.3:48228", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.0639ms"}
[05a 01-09 07:44:18.85 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.855Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.855Z", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.9µs"}
[05b 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Entry chaincode: name:"lscc"
[05c 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer
[05d 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Exit chaincode: name:"lscc" (4ms)
[05e 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:21.609Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54914", "grpc.code": "OK", "grpc.call_duration": "4.7839ms"}
[05f 01-09 07:44:21.79 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]]
[060 01-09 07:44:25.18 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Entry chaincode: name:"lscc"
[061 01-09 07:44:25.20 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"'
[062 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Exit chaincode: name:"lscc" (42738ms)
[063 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:25.184Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54932", "grpc.code": "OK", "grpc.call_duration": "42.7408033s"}
[064 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer
[065 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms
[066 01-09 07:45:09.92 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02]
[067 01-09 07:45:09.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 30ms (state_validation=2ms block_commit=19ms state_commit=4ms)
[068 01-09 07:45:55.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Entry chaincode: name:"exp02"
[069 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Exit chaincode: name:"exp02" (13ms)
[06a 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:55.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55012", "grpc.code": "OK", "grpc.call_duration": "81.8345ms"}
[06b 01-09 07:45:57.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer
[06c 01-09 07:45:57.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 17ms
[06d 01-09 07:45:57.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 40ms (state_validation=2ms block_commit=21ms state_commit=14ms)
[06e 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Entry chaincode: name:"exp02"
[06f 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Exit chaincode: name:"exp02" (3ms)
[070 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:58.389Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55034", "grpc.code": "OK", "grpc.call_duration": "6.0111ms"}
[071 01-09 07:46:00.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer
[072 01-09 07:46:00.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 14ms
[073 01-09 07:46:00.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 35ms (state_validation=2ms block_commit=23ms state_commit=5ms)
[074 01-09 07:46:00.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Entry chaincode: name:"exp02"
[075 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Exit chaincode: name:"exp02" (4ms)
[076 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:00.555Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55038", "grpc.code": "OK", "grpc.call_duration": "6.8017ms"}
[077 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Entry chaincode: name:"lscc"
[078 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Exit chaincode: name:"lscc" (3ms)
[079 01-09 07:46:01.16 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.149Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55042", "grpc.code": "OK", "grpc.call_duration": "13.9729ms"}
[07a 01-09 07:46:01.34 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Entry chaincode: name:"lscc"
[07b 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Exit chaincode: name:"lscc" (1ms)
[07c 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55048", "grpc.code": "OK", "grpc.call_duration": "3.7346ms"}
[07d 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Entry chaincode: name:"lscc"
[07e 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Exit chaincode: name:"lscc" (2ms)
[07f 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.542Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55052", "grpc.code": "OK", "grpc.call_duration": "4.4496ms"}
[080 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Entry chaincode: name:"lscc"
[081 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Exit chaincode: name:"lscc" (1ms)
[082 01-09 07:46:01.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.823Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55056", "grpc.code": "OK", "grpc.call_duration": "8.8364ms"}
[083 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Entry chaincode: name:"lscc"
[084 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Exit chaincode: name:"lscc" (3ms)
[085 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.039Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55064", "grpc.code": "OK", "grpc.call_duration": "5.8508ms"}
[086 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Entry chaincode: name:"qscc"
[087 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Exit chaincode: name:"qscc" (3ms)
[088 01-09 07:46:02.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.745Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55068", "grpc.code": "OK", "grpc.call_duration": "20.066ms"}
[089 01-09 07:46:03.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Entry chaincode: name:"qscc"
[08a 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Exit chaincode: name:"qscc" (2ms)
[08b 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.018Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55072", "grpc.code": "OK", "grpc.call_duration": "5.2914ms"}
[08c 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Entry chaincode: name:"cscc"
[08d 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Exit chaincode: name:"cscc" (1ms)
[08e 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.559Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55076", "grpc.code": "OK", "grpc.call_duration": "3.4588ms"}
[08f 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Entry chaincode: name:"cscc"
[090 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Exit chaincode: name:"cscc" (1ms)
[091 01-09 07:46:03.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.785Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55080", "grpc.code": "OK", "grpc.call_duration": "8.0175ms"}
[092 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Entry chaincode: name:"cscc"
[093 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Exit chaincode: name:"cscc" (3ms)
[094 01-09 07:46:04.01 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:04.004Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55084", "grpc.code": "OK", "grpc.call_duration": "6.2782ms"}
[095 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer
[096 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[097 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set
[098 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.715Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "128.5µs"}
[099 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.718Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.4:41756", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.2µs"}
[09a 01-09 07:46:14.73 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations
[09b 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[09c 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[09d 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[09e 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about
[09f 01-09 07:46:14.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 164ms
[0a0 01-09 07:46:14.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.858Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.1264392s"}
[0a1 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.725Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.719Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "131.6606ms"}
[0a2 01-09 07:46:14.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 28ms (state_validation=1ms block_commit=19ms state_commit=4ms)
[0a3 01-09 07:46:14.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.883Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.883Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "163.9µs"}
[0a4 01-09 07:46:14.89 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.792Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.792Z", "grpc.peer_address": "172.24.0.4:41756", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "104.8958ms"}
[0a5 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.91Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.91Z", "grpc.peer_address": "172.24.0.4:41770", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "139.8µs"}
[0a6 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.577Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.4737676s"}
[0a7 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.898Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.895Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.802ms"}
[0a8 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 isn't responsive: EOF
[0a9 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Entering [08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05]
[0aa 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata:
[0ab 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Exiting
[0ac 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Entry chaincode: name:"cscc"
[0ad 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Exit chaincode: name:"cscc" (1ms)
[0ae 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.236Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55194", "grpc.code": "OK", "grpc.call_duration": "2.3614ms"}
[0af 01-09 07:46:29.62 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Entry chaincode: name:"qscc"
[0b0 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Exit chaincode: name:"qscc" (6ms)
[0b1 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:29.626Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55202", "grpc.code": "OK", "grpc.call_duration": "11.4575ms"}

View File

@ -53,6 +53,7 @@ services:
hostname: orderer0.example.com
ports:
- "7050:7050"
- "8443:8443"
volumes:
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp:/var/hyperledger/orderer/msp
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/:/var/hyperledger/orderer/tls
@ -76,9 +77,10 @@ services:
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 7051:7051
- 7052:7052
- 7053:7053
- "7051:7051"
- "7052:7052"
- "7053:7053"
- "9443:9443"
peer1.org1.example.com:
extends:
@ -97,9 +99,9 @@ services:
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 8051:7051
- 8052:7052
- 8053:7053
- "8051:7051"
- "8052:7052"
- "8053:7053"
peer0.org2.example.com:
extends:
@ -118,9 +120,9 @@ services:
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 9051:7051
- 9052:7052
- 9053:7053
- "9051:7051"
- "9052:7052"
- "9053:7053"
peer1.org2.example.com:
extends:
@ -139,9 +141,9 @@ services:
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 10051:7051
- 10052:7052
- 10053:7053
- "10051:7051"
- "10052:7052"
- "10053:7053"
peer0.org3.example.com:
extends:
@ -160,9 +162,9 @@ services:
- ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp
- ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls
ports:
- 11051:7051
- 11052:7052
- 11053:7053
- "11051:7051"
- "11052:7052"
- "11053:7053"
cli: # client node
extends:
@ -178,6 +180,15 @@ services:
- ./solo/channel-artifacts:/tmp/channel-artifacts
- ./examples:/opt/gopath/src/examples
prometheus: # prometheus will pull metrics from fabric
extends:
file: base.yaml
service: prometheus
container_name: prometheus
hostname: prometheus
ports:
- "9090:9090"
#deprecated
event-listener:
extends:

View File

@ -31,8 +31,8 @@ services:
network_mode: ${NETWORK}
# Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go
environment:
- ORDERER_GENERAL_LOGLEVEL=INFO # default: INFO
- ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- FABRIC_LOGGING_SPEC=INFO # default: INFO
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1
- ORDERER_GENERAL_GENESISMETHOD=file # default: provisional
- ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block
@ -44,16 +44,19 @@ services:
- ORDERER_GENERAL_MAXMESSAGECOUNT=10
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_LISTENPORT=7050
- ORDERER_OPERATIONS_LISTENADDRESS=0.0.0.0:8443 # operation RESTful API
- ORDERER_METRICS_PROVIDER=prometheus # prometheus will pull metrics from orderer via /metrics RESTful API
#- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger
# enabled TLS
- ORDERER_GENERAL_TLS_ENABLED=true # default: false
- ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key
- ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt
- ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt]
volumes:
- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
#volumes:
#- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
expose:
- "7050" #
- "7050" # gRPC
- "8443" # Operation REST
#command: bash -c 'bash /tmp/orderer_build.sh; orderer start' # use this if to debug orderer
command: orderer start
@ -62,13 +65,15 @@ services:
restart: always
network_mode: ${NETWORK}
environment:
- CORE_LOGGING_LEVEL=INFO
- FABRIC_LOGGING_SPEC=INFO
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- CORE_PEER_ADDRESSAUTODETECT=false
- CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=${NETWORK} # uncomment this to use specific network
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false # whether this node is the org leader, default to false
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=0.0.0.0:7051 # change to external addr for peers in other orgs
- CORE_OPERATIONS_LISTENADDRESS=0.0.0.0:9443 # operation RESTful API
- CORE_METRICS_PROVIDER=prometheus # prometheus will pull metrics from fabric via /metrics RESTful API
- CORE_PEER_PROFILE_ENABLED=false
- CORE_PEER_TLS_ENABLED=true
- CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt
@ -77,13 +82,12 @@ services:
- CORE_CHIANCODE_LOGGING_LEVEL=DEBUG
- CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
volumes:
- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
#- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric
# docker.sock is mapped as the default CORE_VM_ENDPOINT
- /var/run/docker.sock:/var/run/docker.sock
expose:
- "7051" # Grpc
- "7052" # Peer CLI
- "7053" # Peer Event
- "7051" # gRPC
- "9443" # Operation REST
#command: bash -c 'bash /tmp/peer_build.sh; peer node start'
command: peer node start
@ -93,13 +97,42 @@ services:
network_mode: ${NETWORK}
tty: true
environment:
- CORE_LOGGING_LEVEL=DEBUG
- CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message}
- FABRIC_LOGGING_SPEC=DEBUG
- FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message}
- CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true
- ORDERER_CA=/etc/hyperledger/fabric/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer
command: bash -c 'cd /tmp; source scripts/func.sh; while true; do sleep 20170504; done'
prometheus: # prometheus will pull metrics from fabric
image: prom/prometheus:v2.6.0
restart: always
network_mode: ${NETWORK}
tty: true
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
#deprecated
event-listener:
extends:
file: base.yaml
service: event-listener-base
container_name: fabric-event-listener
hostname: fabric-event-listener
environment:
- CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1
- CORE_PEER_LOCALMSPID=Org1MSP
- CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt
- CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key
- CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.Org1.example.com/msp
volumes:
- ./scripts:/tmp/scripts
- ./crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml
- ./crypto-config:/etc/hyperledger/fabric/crypto-config
- ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml
- ./solo/channel-artifacts:/tmp/channel-artifacts
- ./examples:/opt/gopath/src/examples
#deprecated
event-listener-base:
image: yeasy/hyperledger-fabric:${FABRIC_IMG_TAG}

View File

@ -56,6 +56,17 @@ services:
depends_on:
- orderer0.example.com
prometheus:
extends:
file: base-solo.yaml
service: prometheus
depends_on:
- orderer0.example.com
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
#networks:
# default:
# external:

View File

@ -0,0 +1,45 @@
# my global config
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
#- job_name: 'prometheus'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
#static_configs:
#- targets: ['localhost:9090']
- job_name: 'orderer0'
static_configs:
- targets: ['orderer0.example.com:8443']
- job_name: 'peer0_org1'
static_configs:
- targets: ['peer0.org1.example.com:9443']
- job_name: 'peer1_org1'
static_configs:
- targets: ['peer1.org1.example.com:9443']
- job_name: 'peer0_org2'
static_configs:
- targets: ['peer0.org2.example.com:9443']
- job_name: 'peer1_org2'
static_configs:
- targets: ['peer1.org2.example.com:9443']

View File

@ -39,12 +39,19 @@ for IMG in baseimage baseos couchdb kafka zookeeper; do
pull_image $HLF_IMG
done
# TODO: official core.yaml still use PROJECT_VERSION for fabric-baseos, however, dockerhub does not have the version
docker tag hyperledger/fabric-baseos:$ARCH-$BASE_IMG_TAG hyperledger/fabric-baseos:$FABRIC_IMG_TAG
# Only useful for debugging
# docker pull yeasy/hyperledger-fabric
echo "=== Pulling fabric images ${FABRIC_IMG_TAG} from fabric repo... ==="
for IMG in peer tools orderer ca ccenv tools; do
HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG
if ["$FABRIC_IMG_TAG" == "latest"]; then
HLF_IMG=hyperledger/fabric-${IMG}:$FABRIC_IMG_TAG
else
HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG
fi
pull_image $HLF_IMG
done

View File

@ -823,13 +823,13 @@
},
"signatures": [
{
"signature": "MEUCIQD+BM2NnTKeMq1IK1wIhrADe+ax1Ptb6h1dZSEIwgCKowIgNCUucwC5E0gW4yFD8iqqsuswAN6g+65DiqCSN0ygNZc=",
"signature": "MEUCIQDJyDo10O2t8CiMjpdS8xAmIXicvAjyK4j5rdL6t16RoQIgH0UCckbPl+6X/jBQxG3SGuhi5VsU3UfovMt6iNUNwNQ=",
"signature_header": {
"creator": {
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K",
"mspid": "Org2MSP"
},
"nonce": "VN5osd9gmaJ8m97/8qiJ+epuviXDwvNL"
"nonce": "1/qZ2sOSZvZXOIozlG7iqfpoebHmcG8Z"
}
}
]
@ -839,7 +839,7 @@
"channel_id": "businesschannel",
"epoch": "0",
"extension": null,
"timestamp": "2018-12-19T08:11:45Z",
"timestamp": "2019-01-09T08:56:57Z",
"tls_cert_hash": null,
"tx_id": "",
"type": 2,
@ -850,11 +850,11 @@
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K",
"mspid": "Org2MSP"
},
"nonce": "yiAN3atkiacYH1CTPpEoOSBll4zRdSuj"
"nonce": "LB+BRvhfGsEbyiZ1RAg6oBZ2rhtnTDem"
}
}
},
"signature": "MEQCIBP0p584VOFIpOtoaFyFuqsjhM6PQ8tqqsTjoPC64lFXAiBAAbofn8Y3IncrxlY2S/6524ospZty5zacGiqwO/4QQg=="
"signature": "MEQCIA+GOM+q4a9oCKYtH7iGy920HAfYoiqj6mDopUgMpociAiBj4S7k5sr1fjC6y+Zea0DGSpSHbgV2GuBe3UIDkwBbhA=="
}
},
"header": {
@ -862,7 +862,7 @@
"channel_id": "businesschannel",
"epoch": "0",
"extension": null,
"timestamp": "2018-12-19T08:11:45Z",
"timestamp": "2019-01-09T08:56:57Z",
"tls_cert_hash": null,
"tx_id": "",
"type": 1,
@ -873,23 +873,23 @@
"id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K",
"mspid": "OrdererMSP"
},
"nonce": "iks4o+8sdrniMdjG6SI8q/vg6PfQcJhu"
"nonce": "0kA4nb0znnBi35VKBdR60HgSRUMzgp3s"
}
}
},
"signature": "MEUCIQD5e7Zlz13KKZ/ewyoB8SMAHlS8XYI/3zcZbkVbrjp6+QIgE39jIktaHjMCjYnLWA6D3D9Ppp7LgVxoevbQYir80zg="
"signature": "MEQCIBZ9T7FzQb24GbIytDukYSaP4pYr+G0yJzTRaO4JgCVaAiAMrWI73IjFARsT5E2vwV6pzjV1By9BV7wmIIe7PWy6KQ=="
}
]
},
"header": {
"data_hash": "mT4Yq52NxgEBNE1Pokdu7f/584wSOdxJ3LU8OSXaemo=",
"data_hash": "mspN+NaVyRsp5+1u7ClY+CoBvihGrMzIApbnguAGRSA=",
"number": "2",
"previous_hash": "DzD2B3w8emSs+zD1hftrxVKhMaFccE6a3iIUANv9RpQ="
"previous_hash": "b4pTE18u/1OiDQUOAIBTDMrFGtgDE5eDWpP2eluh1Hc="
},
"metadata": {
"metadata": [
"Ev4GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhgYcb3Nyo6biKPPPcMqB4m+TuLm6y8a8bMSRzBFAiEA/tis22/RpV54nTixDkN22NCcyvmv49hsDymabcBpCm8CIBBcoTdOIpyZ2s/OUaLdcLkwRRZesd4gQtn+R0p5WXrL",
"CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYi2dVPxxwxAd1MOB35oeWQimOQiG8rmIuEkYwRAIgGCdmFfIqXWc4Z0PtRD1uqH+/iFIyEjIx/iIgJl1dNT0CIDkR+i8+pMPusCwsNWglywH5L2JM02ps3ampTZXl/WgG",
"Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhjjoNG9qkitfT0kGv5gvLP79f+GuC4X7rcSRjBEAiA9JfDq2OjvkOs+Mf7TnmMlPXcD0mSPr1XbhXHY/OrKgQIgSxIA4OnunjIwP1gEQwEyhNOR9cBFhPgynWuVHnksWPQ=",
"CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYq4nOwwpCNoGsaJOt5bHkCmNAsCfimGEgEkYwRAIgLksh1wJCKBTZrqaNF+KPynX1tLLqOFEoTqCdtQrp/eoCIDhHxpUe0MpG8j1TsPmaVcYXq46UmmnTWFQtzO1iSVEP",
"",
""
]

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
2018-12-19 08:11:33.987 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0
2018-12-19 08:11:34.124 UTC [orderer.common.server] prettyPrintStruct -> INFO 002 Orderer config values:
2019-01-09 08:56:39.480 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0
[002 01-09 08:56:39.56 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values:
General.LedgerType = "file"
General.ListenAddress = "0.0.0.0"
General.ListenPort = 7050
@ -67,106 +67,105 @@
Debug.BroadcastTraceDir = ""
Debug.DeliverTraceDir = ""
Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot]
Operations.ListenAddress = "127.0.0.1:8443"
Operations.ListenAddress = "0.0.0.0:8443"
Operations.TLS.Enabled = false
Operations.TLS.PrivateKey = ""
Operations.TLS.Certificate = ""
Operations.TLS.RootCAs = []
Operations.TLS.ClientAuthRequired = false
Operations.TLS.ClientRootCAs = []
Metrics.Provider = "disabled"
Metrics.Provider = "prometheus"
Metrics.Statsd.Network = "udp"
Metrics.Statsd.Address = "127.0.0.1:8125"
Metrics.Statsd.WriteInterval = 30s
Metrics.Statsd.Prefix = ""
2018-12-19 08:11:34.175 UTC [orderer.common.server] initializeServerConfig -> INFO 003 Starting orderer with TLS enabled
2018-12-19 08:11:34.180 UTC [fsblkstorage] newBlockfileMgr -> INFO 004 Getting block information from block storage
2018-12-19 08:11:34.204 UTC [orderer.commmon.multichannel] Initialize -> INFO 005 Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo
2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 006 Starting orderer:
[003 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled
[004 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[005 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo
[006 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer:
Version: 1.4.0-rc1
Commit SHA: development build
Go version: go1.11.2
OS/Arch: linux/amd64
2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 007 Beginning to serve requests
2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 008 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.196Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60746", "grpc.code": "OK", "grpc.call_duration": "53.8668ms"}
2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 009 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.211Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60748", "grpc.code": "OK", "grpc.call_duration": "39.6923ms"}
2018-12-19 08:11:39.268 UTC [fsblkstorage] newBlockfileMgr -> INFO 00a Getting block information from block storage
2018-12-19 08:11:39.276 UTC [orderer.commmon.multichannel] newChain -> INFO 00b Created and starting new chain businesschannel
2018-12-19 08:11:39.487 UTC [common.deliver] Handle -> WARN 00c Error reading from 172.18.0.3:60750: rpc error: code = Canceled desc = context canceled
2018-12-19 08:11:39.489 UTC [comm.grpc.server] 1 -> INFO 00d streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.271Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60750", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "218.3558ms"}
2018-12-19 08:11:43.511 UTC [orderer.common.broadcast] Handle -> WARN 00e Error reading from 172.18.0.3:60778: rpc error: code = Canceled desc = context canceled
2018-12-19 08:11:43.511 UTC [comm.grpc.server] 1 -> INFO 00f streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.3837ms"}
2018-12-19 08:11:43.512 UTC [common.deliver] Handle -> WARN 010 Error reading from 172.18.0.3:60776: rpc error: code = Canceled desc = context canceled
2018-12-19 08:11:43.512 UTC [comm.grpc.server] 1 -> INFO 011 streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.469Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.455ms"}
2018-12-19 08:11:45.711 UTC [orderer.common.broadcast] Handle -> WARN 012 Error reading from 172.18.0.3:60782: rpc error: code = Canceled desc = context canceled
2018-12-19 08:11:45.712 UTC [comm.grpc.server] 1 -> INFO 013 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.685Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.7804ms"}
2018-12-19 08:11:45.717 UTC [common.deliver] Handle -> WARN 014 Error reading from 172.18.0.3:60780: rpc error: code = Canceled desc = context canceled
2018-12-19 08:11:45.718 UTC [comm.grpc.server] 1 -> INFO 015 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.669Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "49.9858ms"}
2018-12-19 08:12:39.970 UTC [orderer.common.broadcast] Handle -> WARN 016 Error reading from 172.18.0.3:60852: rpc error: code = Canceled desc = context canceled
2018-12-19 08:12:39.971 UTC [comm.grpc.server] 1 -> INFO 017 streaming call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60852", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.3166346s"}
2018-12-19 08:13:29.916 UTC [orderer.common.broadcast] Handle -> WARN 018 Error reading from 172.18.0.3:60870: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:29.916 UTC [comm.grpc.server] 1 -> INFO 019 streaming call completed {"grpc.start_time": "2018-12-19T08:13:29.89Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60870", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4973ms"}
2018-12-19 08:13:34.257 UTC [orderer.common.broadcast] Handle -> WARN 01a Error reading from 172.18.0.3:60884: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:34.257 UTC [comm.grpc.server] 1 -> INFO 01b streaming call completed {"grpc.start_time": "2018-12-19T08:13:34.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60884", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.7293ms"}
2018-12-19 08:13:43.206 UTC [common.deliver] Handle -> WARN 01c Error reading from 172.18.0.3:60934: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:43.208 UTC [comm.grpc.server] 1 -> INFO 01d streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.2Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60934", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3707ms"}
2018-12-19 08:13:43.548 UTC [common.deliver] Handle -> WARN 01e Error reading from 172.18.0.3:60936: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:43.548 UTC [comm.grpc.server] 1 -> INFO 01f streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60936", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.63ms"}
2018-12-19 08:13:43.707 UTC [common.deliver] Handle -> WARN 020 Error reading from 172.18.0.3:60938: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:43.708 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.7Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60938", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1067ms"}
2018-12-19 08:13:43.955 UTC [common.deliver] Handle -> WARN 022 Error reading from 172.18.0.3:60940: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:43.955 UTC [comm.grpc.server] 1 -> INFO 023 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.931Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60940", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.8715ms"}
2018-12-19 08:13:44.438 UTC [common.deliver] Handle -> WARN 024 Error reading from 172.18.0.3:60942: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:44.439 UTC [comm.grpc.server] 1 -> INFO 025 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.425Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60942", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.0098ms"}
2018-12-19 08:13:44.816 UTC [common.deliver] Handle -> WARN 026 Error reading from 172.18.0.3:60944: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:44.817 UTC [comm.grpc.server] 1 -> INFO 027 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.795Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60944", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.1935ms"}
2018-12-19 08:13:45.232 UTC [common.deliver] Handle -> WARN 028 Error reading from 172.18.0.3:60946: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:45.233 UTC [comm.grpc.server] 1 -> INFO 029 streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60946", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.2157ms"}
2018-12-19 08:13:45.635 UTC [common.deliver] Handle -> WARN 02a Error reading from 172.18.0.3:60948: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:45.635 UTC [comm.grpc.server] 1 -> INFO 02b streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.621Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60948", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.7427ms"}
2018-12-19 08:13:45.894 UTC [common.deliver] Handle -> WARN 02c Error reading from 172.18.0.3:60950: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:45.894 UTC [comm.grpc.server] 1 -> INFO 02d streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.884Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60950", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3308ms"}
2018-12-19 08:13:46.158 UTC [common.deliver] Handle -> WARN 02e Error reading from 172.18.0.3:60952: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:46.158 UTC [comm.grpc.server] 1 -> INFO 02f streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.138Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60952", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.7885ms"}
2018-12-19 08:13:46.458 UTC [common.deliver] Handle -> WARN 030 Error reading from 172.18.0.3:60954: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:46.459 UTC [comm.grpc.server] 1 -> INFO 031 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.445Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60954", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.8658ms"}
2018-12-19 08:13:46.852 UTC [common.deliver] Handle -> WARN 032 Error reading from 172.18.0.3:60956: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:46.852 UTC [comm.grpc.server] 1 -> INFO 033 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.842Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60956", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.6695ms"}
2018-12-19 08:13:55.768 UTC [cauthdsl] deduplicate -> WARN 034 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:55.769 UTC [cauthdsl] deduplicate -> WARN 035 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:55.815 UTC [common.deliver] Handle -> WARN 036 Error reading from 172.18.0.3:60958: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:55.815 UTC [comm.grpc.server] 1 -> INFO 037 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.739Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60958", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "76.1519ms"}
2018-12-19 08:13:55.820 UTC [orderer.common.broadcast] Handle -> WARN 038 Error reading from 172.18.0.3:60960: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:55.824 UTC [comm.grpc.server] 1 -> INFO 039 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.763Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60960", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "61.462ms"}
2018-12-19 08:13:55.827 UTC [cauthdsl] deduplicate -> WARN 03a De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:55.828 UTC [cauthdsl] deduplicate -> WARN 03b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:58.012 UTC [common.deliver] Handle -> WARN 03c Error reading from 172.18.0.3:60988: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:58.013 UTC [comm.grpc.server] 1 -> INFO 03d streaming call completed {"grpc.start_time": "2018-12-19T08:13:57.999Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60988", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3758ms"}
2018-12-19 08:13:58.177 UTC [common.deliver] Handle -> WARN 03e Error reading from 172.18.0.3:60990: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:58.178 UTC [comm.grpc.server] 1 -> INFO 03f streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.17Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60990", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.0947ms"}
2018-12-19 08:13:58.731 UTC [common.deliver] Handle -> WARN 040 Error reading from 172.18.0.3:60992: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:58.732 UTC [comm.grpc.server] 1 -> INFO 041 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.719Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60992", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8045ms"}
2018-12-19 08:13:58.920 UTC [common.deliver] Handle -> WARN 042 Error reading from 172.18.0.3:60994: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:58.921 UTC [comm.grpc.server] 1 -> INFO 043 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.898Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60994", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.3282ms"}
2018-12-19 08:13:59.097 UTC [common.deliver] Handle -> WARN 044 Error reading from 172.18.0.3:60996: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:59.098 UTC [comm.grpc.server] 1 -> INFO 045 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.085Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60996", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4647ms"}
2018-12-19 08:13:59.332 UTC [common.deliver] Handle -> WARN 046 Error reading from 172.18.0.3:60998: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:59.332 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.317Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60998", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.9587ms"}
2018-12-19 08:13:59.747 UTC [common.deliver] Handle -> WARN 048 Error reading from 172.18.0.3:32768: rpc error: code = Canceled desc = context canceled
2018-12-19 08:13:59.747 UTC [comm.grpc.server] 1 -> INFO 049 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.692Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32768", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "55.1541ms"}
2018-12-19 08:14:00.131 UTC [common.deliver] Handle -> WARN 04a Error reading from 172.18.0.3:32770: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:00.131 UTC [comm.grpc.server] 1 -> INFO 04b streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.108Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32770", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.4406ms"}
2018-12-19 08:14:00.349 UTC [common.deliver] Handle -> WARN 04c Error reading from 172.18.0.3:32772: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:00.350 UTC [comm.grpc.server] 1 -> INFO 04d streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.34Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32772", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0703ms"}
2018-12-19 08:14:00.648 UTC [common.deliver] Handle -> WARN 04e Error reading from 172.18.0.3:32774: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:00.649 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.634Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32774", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9414ms"}
2018-12-19 08:14:01.098 UTC [common.deliver] Handle -> WARN 050 Error reading from 172.18.0.3:32776: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:01.098 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.079Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.6551ms"}
2018-12-19 08:14:01.653 UTC [common.deliver] Handle -> WARN 052 Error reading from 172.18.0.3:32778: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:01.653 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.626Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "27.0192ms"}
2018-12-19 08:14:02.108 UTC [common.deliver] Handle -> WARN 054 Error reading from 172.18.0.3:32780: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:02.108 UTC [comm.grpc.server] 1 -> INFO 055 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.082Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4043ms"}
2018-12-19 08:14:02.453 UTC [common.deliver] Handle -> WARN 056 Error reading from 172.18.0.3:32782: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:02.453 UTC [comm.grpc.server] 1 -> INFO 057 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.415Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "38.3231ms"}
2018-12-19 08:14:02.774 UTC [common.deliver] Handle -> WARN 058 Error reading from 172.18.0.3:32784: rpc error: code = Canceled desc = context canceled
2018-12-19 08:14:02.774 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.752Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32784", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.6929ms"}
[007 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests
[008 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33084", "grpc.code": "OK", "grpc.call_duration": "33.6809ms"}
[009 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[00a 01-09 08:56:51.57 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel
[00b 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33082: rpc error: code = Canceled desc = context canceled
[00c 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.516Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33082", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "82.4385ms"}
[00d 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33112: rpc error: code = Canceled desc = context canceled
[00e 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.508Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33112", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "57.5842ms"}
[00f 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33114: rpc error: code = Canceled desc = context canceled
[010 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.524Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33114", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "41.9631ms"}
[011 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33118: rpc error: code = Canceled desc = context canceled
[012 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.771Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33118", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "63.7111ms"}
[013 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33120: rpc error: code = Canceled desc = context canceled
[014 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.792Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33120", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.507ms"}
[015 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33184: rpc error: code = Canceled desc = context canceled
[016 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:57:06.16Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33184", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.3107475s"}
[017 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33252: rpc error: code = Canceled desc = context canceled
[018 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33252", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "28.1573ms"}
[019 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33266: rpc error: code = Canceled desc = context canceled
[01a 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:22.137Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33266", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.551ms"}
[01b 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33320: rpc error: code = Canceled desc = context canceled
[01c 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.37Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33320", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2877ms"}
[01d 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33322: rpc error: code = Canceled desc = context canceled
[01e 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.64Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33322", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.6636ms"}
[01f 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33324: rpc error: code = Canceled desc = context canceled
[020 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.819Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33324", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9722ms"}
[021 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33326: rpc error: code = Canceled desc = context canceled
[022 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.025Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33326", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6022ms"}
[023 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33328: rpc error: code = Canceled desc = context canceled
[024 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.223Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33328", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.5946ms"}
[025 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33330: rpc error: code = Canceled desc = context canceled
[026 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.431Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33330", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6551ms"}
[027 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33332: rpc error: code = Canceled desc = context canceled
[028 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.613Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33332", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.9043ms"}
[029 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33334: rpc error: code = Canceled desc = context canceled
[02a 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.829Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33334", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7979ms"}
[02b 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33336: rpc error: code = Canceled desc = context canceled
[02c 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.007Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33336", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.1246ms"}
[02d 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33338: rpc error: code = Canceled desc = context canceled
[02e 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.225Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33338", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.7998ms"}
[02f 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33340: rpc error: code = Canceled desc = context canceled
[030 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.409Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33340", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.116ms"}
[031 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33342: rpc error: code = Canceled desc = context canceled
[032 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.652Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33342", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.0764ms"}
[033 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[034 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[035 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[036 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[037 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33352: rpc error: code = Canceled desc = context canceled
[038 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.269Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.4208ms"}
[039 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33350: rpc error: code = Canceled desc = context canceled
[03a 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.25Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.303ms"}
[03b 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33376: rpc error: code = Canceled desc = context canceled
[03c 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.535Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33376", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9595ms"}
[03d 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33378: rpc error: code = Canceled desc = context canceled
[03e 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.707Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.8979ms"}
[03f 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33382: rpc error: code = Canceled desc = context canceled
[040 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.307Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33382", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.027ms"}
[041 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33384: rpc error: code = Canceled desc = context canceled
[042 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.502Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33384", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.4039ms"}
[043 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33386: rpc error: code = Canceled desc = context canceled
[044 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.683Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33386", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2124ms"}
[045 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33388: rpc error: code = Canceled desc = context canceled
[046 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.865Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33388", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.4352ms"}
[047 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33390: rpc error: code = Canceled desc = context canceled
[048 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.095Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33390", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.9751ms"}
[049 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33392: rpc error: code = Canceled desc = context canceled
[04a 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.293Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33392", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7753ms"}
[04b 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33394: rpc error: code = Canceled desc = context canceled
[04c 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33394", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.8686ms"}
[04d 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33396: rpc error: code = Canceled desc = context canceled
[04e 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.671Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33396", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1079ms"}
[04f 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33398: rpc error: code = Canceled desc = context canceled
[050 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.859Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33398", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8998ms"}
[051 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33400: rpc error: code = Canceled desc = context canceled
[052 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.091Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33400", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "5.0606ms"}
[053 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33402: rpc error: code = Canceled desc = context canceled
[054 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.273Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33402", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0081ms"}
[055 01-09 08:58:43.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33408: rpc error: code = Canceled desc = context canceled
[056 01-09 08:58:43.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.509Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33408", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4437ms"}
[057 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33410: rpc error: code = Canceled desc = context canceled
[058 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.714Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33410", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.2761ms"}

View File

@ -1,5 +1,4 @@
2018-12-19 08:11:36.617 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable
2018-12-19 08:11:36.694 UTC [nodeCmd] serve -> INFO 002 Starting peer:
[001 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer:
Version: 1.4.0-rc1
Commit SHA: development build
Go version: go1.11.2
@ -9,179 +8,182 @@
Base Docker Namespace: hyperledger
Base Docker Label: org.hyperledger.fabric
Docker Namespace: hyperledger
2018-12-19 08:11:36.695 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt
2018-12-19 08:11:36.695 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider
2018-12-19 08:11:36.746 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized
2018-12-19 08:11:36.803 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized
2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.7:7051
2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 008 Returning peer0.org1.example.com:7051
2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.7:7051
2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 00a Returning peer0.org1.example.com:7051
2018-12-19 08:11:36.820 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled
2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com
2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer0.org1.example.com:7052
2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered
2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered
2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered
2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered
2018-12-19 08:11:36.858 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051]
2018-12-19 08:11:36.867 UTC [gossip.gossip] NewGossipService -> INFO 013 Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata:
2018-12-19 08:11:36.869 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer0.org1.example.com:7051 started
2018-12-19 08:11:36.872 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed
2018-12-19 08:11:36.873 UTC [cscc] Init -> INFO 016 Init CSCC
2018-12-19 08:11:36.873 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed
2018-12-19 08:11:36.875 UTC [qscc] Init -> INFO 018 Init QSCC
2018-12-19 08:11:36.876 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed
2018-12-19 08:11:36.878 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
2018-12-19 08:11:36.878 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes
2018-12-19 08:11:36.881 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000
2018-12-19 08:11:36.881 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated
2018-12-19 08:11:36.881 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
2018-12-19 08:11:36.882 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
2018-12-19 08:11:36.907 UTC [comm.grpc.server] 1 -> INFO 020 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.907Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.905Z", "grpc.peer_address": "172.18.0.4:56956", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.1µs"}
2018-12-19 08:11:36.917 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.909Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:46.909Z", "grpc.peer_address": "172.18.0.4:56956", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1053ms"}
2018-12-19 08:11:36.921 UTC [comm.grpc.server] 1 -> INFO 022 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.921Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.92Z", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "178.8µs"}
2018-12-19 08:11:40.036 UTC [endorser] callChaincode -> INFO 023 [][e0c1b0fe] Entry chaincode: name:"cscc"
2018-12-19 08:11:40.039 UTC [ledgermgmt] CreateLedger -> INFO 024 Creating ledger [businesschannel] with genesis block
2018-12-19 08:11:40.043 UTC [fsblkstorage] newBlockfileMgr -> INFO 025 Getting block information from block storage
2018-12-19 08:11:40.064 UTC [kvledger] CommitWithPvtData -> INFO 026 [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=2ms block_commit=8ms state_commit=3ms)
2018-12-19 08:11:40.066 UTC [ledgermgmt] CreateLedger -> INFO 027 Created ledger [businesschannel] with genesis block
2018-12-19 08:11:40.075 UTC [gossip.gossip] JoinChan -> INFO 028 Joining gossip network of channel businesschannel with 2 organizations
2018-12-19 08:11:40.075 UTC [gossip.gossip] learnAnchorPeers -> INFO 029 No configured anchor peers of Org2MSP for channel businesschannel to learn about
2018-12-19 08:11:40.076 UTC [gossip.gossip] learnAnchorPeers -> INFO 02a No configured anchor peers of Org1MSP for channel businesschannel to learn about
2018-12-19 08:11:40.100 UTC [gossip.state] NewGossipStateProvider -> INFO 02b Updating metadata information, current ledger sequence is at = 0, next expected block is = 1
2018-12-19 08:11:40.105 UTC [sccapi] deploySysCC -> INFO 02c system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed
2018-12-19 08:11:40.105 UTC [cscc] Init -> INFO 02d Init CSCC
2018-12-19 08:11:40.106 UTC [sccapi] deploySysCC -> INFO 02e system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed
2018-12-19 08:11:40.106 UTC [qscc] Init -> INFO 02f Init QSCC
2018-12-19 08:11:40.107 UTC [sccapi] deploySysCC -> INFO 030 system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed
2018-12-19 08:11:40.108 UTC [sccapi] deploySysCC -> INFO 031 system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
2018-12-19 08:11:40.109 UTC [endorser] callChaincode -> INFO 032 [][e0c1b0fe] Exit chaincode: name:"cscc" (72ms)
2018-12-19 08:11:40.109 UTC [comm.grpc.server] 1 -> INFO 033 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.034Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56200", "grpc.code": "OK", "grpc.call_duration": "75.3186ms"}
2018-12-19 08:11:41.410 UTC [endorser] callChaincode -> INFO 034 [][d601226d] Entry chaincode: name:"cscc"
2018-12-19 08:11:41.411 UTC [endorser] callChaincode -> INFO 035 [][d601226d] Exit chaincode: name:"cscc" (1ms)
2018-12-19 08:11:41.412 UTC [comm.grpc.server] 1 -> INFO 036 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56208", "grpc.code": "OK", "grpc.call_duration": "1.9299ms"}
2018-12-19 08:11:42.440 UTC [endorser] callChaincode -> INFO 037 [][105bde83] Entry chaincode: name:"qscc"
2018-12-19 08:11:42.442 UTC [endorser] callChaincode -> INFO 038 [][105bde83] Exit chaincode: name:"qscc" (2ms)
2018-12-19 08:11:42.443 UTC [comm.grpc.server] 1 -> INFO 039 unary call completed {"grpc.start_time": "2018-12-19T08:11:42.439Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56216", "grpc.code": "OK", "grpc.call_duration": "4.581ms"}
2018-12-19 08:11:45.077 UTC [gossip.channel] reportMembershipChanges -> INFO 03a Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]]
2018-12-19 08:11:46.105 UTC [gossip.election] beLeader -> INFO 03b 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader
2018-12-19 08:11:46.106 UTC [gossip.service] func1 -> INFO 03c Elected as a leader, starting delivery service for channel businesschannel
2018-12-19 08:11:46.121 UTC [gossip.privdata] StoreBlock -> INFO 03d [businesschannel] Received block [1] from buffer
2018-12-19 08:11:46.151 UTC [gossip.gossip] JoinChan -> INFO 03e Joining gossip network of channel businesschannel with 2 organizations
2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 03f No configured anchor peers of Org2MSP for channel businesschannel to learn about
2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 040 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 041 Anchor peer with same endpoint, skipping connecting to myself
2018-12-19 08:11:46.169 UTC [committer.txvalidator] Validate -> INFO 042 [businesschannel] Validated block [1] in 47ms
2018-12-19 08:11:46.196 UTC [comm.grpc.server] 1 -> INFO 043 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.196Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.195Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "135.3µs"}
2018-12-19 08:11:46.197 UTC [kvledger] CommitWithPvtData -> INFO 044 [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=18ms state_commit=4ms)
2018-12-19 08:11:46.198 UTC [gossip.privdata] StoreBlock -> INFO 045 [businesschannel] Received block [2] from buffer
2018-12-19 08:11:46.213 UTC [comm.grpc.server] 1 -> INFO 046 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.924Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "9.2887272s"}
2018-12-19 08:11:46.216 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.211Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.2Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "4.8086ms"}
2018-12-19 08:11:46.217 UTC [gossip.gossip] JoinChan -> INFO 048 Joining gossip network of channel businesschannel with 2 organizations
2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 049 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 04a Anchor peer with same endpoint, skipping connecting to myself
2018-12-19 08:11:46.218 UTC [gossip.gossip] learnAnchorPeers -> INFO 04b Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
2018-12-19 08:11:46.236 UTC [committer.txvalidator] Validate -> INFO 04c [businesschannel] Validated block [2] in 38ms
2018-12-19 08:11:46.281 UTC [kvledger] CommitWithPvtData -> INFO 04d [businesschannel] Committed block [2] with 1 transaction(s) in 40ms (state_validation=7ms block_commit=28ms state_commit=2ms)
2018-12-19 08:11:46.336 UTC [comm.grpc.server] 1 -> INFO 04e unary call completed {"grpc.start_time": "2018-12-19T08:11:46.336Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.336Z", "grpc.peer_address": "172.18.0.4:57014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.3µs"}
2018-12-19 08:11:46.346 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.339Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.338Z", "grpc.peer_address": "172.18.0.4:57014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.5547ms"}
2018-12-19 08:11:46.697 UTC [comm.grpc.server] 1 -> INFO 050 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.696Z", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "189.5µs"}
2018-12-19 08:11:46.720 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.713Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "6.8017ms"}
2018-12-19 08:11:46.751 UTC [comm.grpc.server] 1 -> INFO 052 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.75Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.748Z", "grpc.peer_address": "172.18.0.6:55698", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.357ms"}
2018-12-19 08:11:46.768 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.755Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.754Z", "grpc.peer_address": "172.18.0.6:55698", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7156ms"}
2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 054 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.779Z", "grpc.peer_address": "172.18.0.5:48688", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "246.3µs"}
2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 055 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.78Z", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "200.3µs"}
2018-12-19 08:11:46.795 UTC [comm.grpc.server] 1 -> INFO 056 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.783Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.783Z", "grpc.peer_address": "172.18.0.5:48688", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.1758ms"}
2018-12-19 08:11:46.825 UTC [comm.grpc.server] 1 -> INFO 057 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.825Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.825Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "158.5µs"}
2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 058 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.789Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "41.2196ms"}
2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.827Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.827Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.0167ms"}
2018-12-19 08:11:46.865 UTC [comm.grpc.server] 1 -> INFO 05a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.865Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.863Z", "grpc.peer_address": "172.18.0.5:48696", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "136.5µs"}
2018-12-19 08:11:46.873 UTC [comm.grpc.server] 1 -> INFO 05b streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.867Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.867Z", "grpc.peer_address": "172.18.0.5:48696", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "5.5626ms"}
2018-12-19 08:11:46.913 UTC [comm.grpc.server] 1 -> INFO 05c unary call completed {"grpc.start_time": "2018-12-19T08:11:46.913Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.913Z", "grpc.peer_address": "172.18.0.5:48700", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "111.7µs"}
2018-12-19 08:11:46.929 UTC [comm.grpc.server] 1 -> INFO 05d unary call completed {"grpc.start_time": "2018-12-19T08:11:46.929Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.929Z", "grpc.peer_address": "172.18.0.6:55716", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.5µs"}
2018-12-19 08:11:46.953 UTC [comm.grpc.server] 1 -> INFO 05e streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.934Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55716", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.5126ms"}
2018-12-19 08:11:46.957 UTC [comm.grpc.server] 1 -> INFO 05f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.932Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.5:48700", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.3593ms"}
2018-12-19 08:11:50.076 UTC [gossip.channel] reportMembershipChanges -> INFO 060 Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]]
2018-12-19 08:11:50.136 UTC [endorser] callChaincode -> INFO 061 [][11597d39] Entry chaincode: name:"lscc"
2018-12-19 08:11:50.138 UTC [lscc] executeInstall -> INFO 062 Installed Chaincode [exp02] Version [1.0] to peer
2018-12-19 08:11:50.138 UTC [endorser] callChaincode -> INFO 063 [][11597d39] Exit chaincode: name:"lscc" (2ms)
2018-12-19 08:11:50.139 UTC [comm.grpc.server] 1 -> INFO 064 unary call completed {"grpc.start_time": "2018-12-19T08:11:50.136Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56280", "grpc.code": "OK", "grpc.call_duration": "3.0639ms"}
2018-12-19 08:11:54.727 UTC [endorser] callChaincode -> INFO 065 [businesschannel][a605b361] Entry chaincode: name:"lscc"
2018-12-19 08:11:54.743 UTC [chaincode.platform.golang] GenerateDockerBuild -> INFO 066 building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"'
2018-12-19 08:12:39.954 UTC [endorser] callChaincode -> INFO 067 [businesschannel][a605b361] Exit chaincode: name:"lscc" (45298ms)
2018-12-19 08:12:39.956 UTC [comm.grpc.server] 1 -> INFO 068 unary call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56296", "grpc.code": "OK", "grpc.call_duration": "45.3005385s"}
2018-12-19 08:12:41.974 UTC [gossip.privdata] StoreBlock -> INFO 069 [businesschannel] Received block [3] from buffer
2018-12-19 08:12:42.006 UTC [committer.txvalidator] Validate -> INFO 06a [businesschannel] Validated block [3] in 31ms
2018-12-19 08:12:42.010 UTC [cceventmgmt] HandleStateUpdates -> INFO 06b Channel [businesschannel]: Handling deploy or update of chaincode [exp02]
2018-12-19 08:12:42.041 UTC [kvledger] CommitWithPvtData -> INFO 06c [businesschannel] Committed block [3] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=19ms state_commit=4ms)
2018-12-19 08:13:29.893 UTC [endorser] callChaincode -> INFO 06d [businesschannel][06c886de] Entry chaincode: name:"exp02"
2018-12-19 08:13:29.902 UTC [endorser] callChaincode -> INFO 06e [businesschannel][06c886de] Exit chaincode: name:"exp02" (9ms)
2018-12-19 08:13:29.903 UTC [comm.grpc.server] 1 -> INFO 06f unary call completed {"grpc.start_time": "2018-12-19T08:13:29.891Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56314", "grpc.code": "OK", "grpc.call_duration": "11.5393ms"}
2018-12-19 08:13:31.935 UTC [gossip.privdata] StoreBlock -> INFO 070 [businesschannel] Received block [4] from buffer
2018-12-19 08:13:31.971 UTC [committer.txvalidator] Validate -> INFO 071 [businesschannel] Validated block [4] in 35ms
2018-12-19 08:13:32.005 UTC [kvledger] CommitWithPvtData -> INFO 072 [businesschannel] Committed block [4] with 1 transaction(s) in 32ms (state_validation=1ms block_commit=23ms state_commit=6ms)
2018-12-19 08:13:34.889 UTC [endorser] callChaincode -> INFO 073 [businesschannel][0eff2a99] Entry chaincode: name:"exp02"
2018-12-19 08:13:34.892 UTC [endorser] callChaincode -> INFO 074 [businesschannel][0eff2a99] Exit chaincode: name:"exp02" (4ms)
2018-12-19 08:13:34.895 UTC [comm.grpc.server] 1 -> INFO 075 unary call completed {"grpc.start_time": "2018-12-19T08:13:34.887Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56334", "grpc.code": "OK", "grpc.call_duration": "8.5669ms"}
2018-12-19 08:13:36.339 UTC [gossip.privdata] StoreBlock -> INFO 076 [businesschannel] Received block [5] from buffer
2018-12-19 08:13:36.552 UTC [committer.txvalidator] Validate -> INFO 077 [businesschannel] Validated block [5] in 209ms
2018-12-19 08:13:36.680 UTC [kvledger] CommitWithPvtData -> INFO 078 [businesschannel] Committed block [5] with 1 transaction(s) in 126ms (state_validation=0ms block_commit=113ms state_commit=4ms)
2018-12-19 08:13:37.335 UTC [endorser] callChaincode -> INFO 079 [businesschannel][fcf11a3c] Entry chaincode: name:"exp02"
2018-12-19 08:13:37.340 UTC [endorser] callChaincode -> INFO 07a [businesschannel][fcf11a3c] Exit chaincode: name:"exp02" (4ms)
2018-12-19 08:13:37.342 UTC [comm.grpc.server] 1 -> INFO 07b unary call completed {"grpc.start_time": "2018-12-19T08:13:37.333Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56338", "grpc.code": "OK", "grpc.call_duration": "8.9383ms"}
2018-12-19 08:13:38.349 UTC [endorser] callChaincode -> INFO 07c [businesschannel][3887efc9] Entry chaincode: name:"lscc"
2018-12-19 08:13:38.352 UTC [endorser] callChaincode -> INFO 07d [businesschannel][3887efc9] Exit chaincode: name:"lscc" (3ms)
2018-12-19 08:13:38.368 UTC [comm.grpc.server] 1 -> INFO 07e unary call completed {"grpc.start_time": "2018-12-19T08:13:38.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56342", "grpc.code": "OK", "grpc.call_duration": "19.6932ms"}
2018-12-19 08:13:38.658 UTC [endorser] callChaincode -> INFO 07f [businesschannel][01382c1f] Entry chaincode: name:"lscc"
2018-12-19 08:13:38.661 UTC [endorser] callChaincode -> INFO 080 [businesschannel][01382c1f] Exit chaincode: name:"lscc" (2ms)
2018-12-19 08:13:38.662 UTC [comm.grpc.server] 1 -> INFO 081 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.657Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56346", "grpc.code": "OK", "grpc.call_duration": "5.4865ms"}
2018-12-19 08:13:38.930 UTC [endorser] callChaincode -> INFO 082 [businesschannel][c80109d5] Entry chaincode: name:"lscc"
2018-12-19 08:13:38.932 UTC [endorser] callChaincode -> INFO 083 [businesschannel][c80109d5] Exit chaincode: name:"lscc" (2ms)
2018-12-19 08:13:38.933 UTC [comm.grpc.server] 1 -> INFO 084 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.929Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56350", "grpc.code": "OK", "grpc.call_duration": "3.8826ms"}
2018-12-19 08:13:39.254 UTC [endorser] callChaincode -> INFO 085 [businesschannel][e391e116] Entry chaincode: name:"lscc"
2018-12-19 08:13:39.255 UTC [endorser] callChaincode -> INFO 086 [businesschannel][e391e116] Exit chaincode: name:"lscc" (1ms)
2018-12-19 08:13:39.256 UTC [comm.grpc.server] 1 -> INFO 087 unary call completed {"grpc.start_time": "2018-12-19T08:13:39.253Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56354", "grpc.code": "OK", "grpc.call_duration": "3.524ms"}
2018-12-19 08:13:39.647 UTC [endorser] callChaincode -> INFO 088 [businesschannel][650d8dfd] Entry chaincode: name:"lscc"
2018-12-19 08:13:39.649 UTC [endorser] callChaincode -> INFO 089 [businesschannel][650d8dfd] Exit chaincode: name:"lscc" (2ms)
2018-12-19 08:13:39.649 UTC [comm.grpc.server] 1 -> INFO 08a unary call completed {"grpc.start_time": "2018-12-19T08:13:39.646Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56358", "grpc.code": "OK", "grpc.call_duration": "3.5105ms"}
2018-12-19 08:13:40.392 UTC [endorser] callChaincode -> INFO 08b [businesschannel][86cae698] Entry chaincode: name:"qscc"
2018-12-19 08:13:40.394 UTC [endorser] callChaincode -> INFO 08c [businesschannel][86cae698] Exit chaincode: name:"qscc" (1ms)
2018-12-19 08:13:40.395 UTC [comm.grpc.server] 1 -> INFO 08d unary call completed {"grpc.start_time": "2018-12-19T08:13:40.391Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56362", "grpc.code": "OK", "grpc.call_duration": "3.971ms"}
2018-12-19 08:13:40.675 UTC [endorser] callChaincode -> INFO 08e [businesschannel][10b5b899] Entry chaincode: name:"qscc"
2018-12-19 08:13:40.861 UTC [endorser] callChaincode -> INFO 08f [businesschannel][10b5b899] Exit chaincode: name:"qscc" (184ms)
2018-12-19 08:13:40.899 UTC [comm.grpc.server] 1 -> INFO 090 unary call completed {"grpc.start_time": "2018-12-19T08:13:40.672Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56366", "grpc.code": "OK", "grpc.call_duration": "226.6949ms"}
2018-12-19 08:13:41.982 UTC [endorser] callChaincode -> INFO 091 [businesschannel][03e94530] Entry chaincode: name:"cscc"
2018-12-19 08:13:41.985 UTC [endorser] callChaincode -> INFO 092 [businesschannel][03e94530] Exit chaincode: name:"cscc" (3ms)
2018-12-19 08:13:41.986 UTC [comm.grpc.server] 1 -> INFO 093 unary call completed {"grpc.start_time": "2018-12-19T08:13:41.981Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56370", "grpc.code": "OK", "grpc.call_duration": "5.0576ms"}
2018-12-19 08:13:42.222 UTC [endorser] callChaincode -> INFO 094 [businesschannel][984943dd] Entry chaincode: name:"cscc"
2018-12-19 08:13:42.223 UTC [endorser] callChaincode -> INFO 095 [businesschannel][984943dd] Exit chaincode: name:"cscc" (1ms)
2018-12-19 08:13:42.224 UTC [comm.grpc.server] 1 -> INFO 096 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.221Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56374", "grpc.code": "OK", "grpc.call_duration": "2.777ms"}
2018-12-19 08:13:42.616 UTC [endorser] callChaincode -> INFO 097 [businesschannel][b8f33e17] Entry chaincode: name:"cscc"
2018-12-19 08:13:42.618 UTC [endorser] callChaincode -> INFO 098 [businesschannel][b8f33e17] Exit chaincode: name:"cscc" (1ms)
2018-12-19 08:13:42.618 UTC [comm.grpc.server] 1 -> INFO 099 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.615Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56378", "grpc.code": "OK", "grpc.call_duration": "3.2781ms"}
2018-12-19 08:13:55.862 UTC [gossip.privdata] StoreBlock -> INFO 09a [businesschannel] Received block [6] from buffer
2018-12-19 08:13:55.873 UTC [cauthdsl] deduplicate -> WARN 09b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:55.881 UTC [cauthdsl] deduplicate -> WARN 09c De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
2018-12-19 08:13:55.917 UTC [comm.grpc.server] 1 -> INFO 09d unary call completed {"grpc.start_time": "2018-12-19T08:13:55.916Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:57.916Z", "grpc.peer_address": "172.18.0.4:57182", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "233.6µs"}
2018-12-19 08:13:55.986 UTC [comm.grpc.server] 1 -> INFO 09e streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.931Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:05.93Z", "grpc.peer_address": "172.18.0.4:57182", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "55.8762ms"}
2018-12-19 08:13:56.020 UTC [comm.grpc.server] 1 -> INFO 09f unary call completed {"grpc.start_time": "2018-12-19T08:13:56.02Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.019Z", "grpc.peer_address": "172.18.0.6:55858", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "167µs"}
2018-12-19 08:13:56.022 UTC [comm.grpc.server] 1 -> INFO 0a0 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.021Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.021Z", "grpc.peer_address": "172.18.0.5:48844", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "115.9µs"}
2018-12-19 08:13:56.057 UTC [comm.grpc.server] 1 -> INFO 0a1 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.04Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.039Z", "grpc.peer_address": "172.18.0.5:48844", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.824ms"}
2018-12-19 08:13:56.064 UTC [gossip.gossip] JoinChan -> INFO 0a2 Joining gossip network of channel businesschannel with 3 organizations
2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a3 No configured anchor peers of Org3MSP for channel businesschannel to learn about
2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a4 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
2018-12-19 08:13:56.066 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a5 Anchor peer with same endpoint, skipping connecting to myself
2018-12-19 08:13:56.067 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a6 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
2018-12-19 08:13:56.085 UTC [committer.txvalidator] Validate -> INFO 0a7 [businesschannel] Validated block [6] in 221ms
2018-12-19 08:13:56.087 UTC [comm.grpc.server] 1 -> INFO 0a8 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.058Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.058Z", "grpc.peer_address": "172.18.0.6:55858", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "29.2046ms"}
2018-12-19 08:13:56.090 UTC [comm.grpc.server] 1 -> INFO 0a9 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.089Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.089Z", "grpc.peer_address": "172.18.0.5:48852", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.1µs"}
2018-12-19 08:13:56.107 UTC [comm.grpc.server] 1 -> INFO 0aa unary call completed {"grpc.start_time": "2018-12-19T08:13:56.107Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.107Z", "grpc.peer_address": "172.18.0.6:55866", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "133.7µs"}
2018-12-19 08:13:56.116 UTC [kvledger] CommitWithPvtData -> INFO 0ab [businesschannel] Committed block [6] with 1 transaction(s) in 30ms (state_validation=3ms block_commit=23ms state_commit=2ms)
2018-12-19 08:13:56.143 UTC [comm.grpc.server] 1 -> INFO 0ac streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.121Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55866", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.9251ms"}
2018-12-19 08:14:14.473 UTC [endorser] callChaincode -> INFO 0ad [][f82208e7] Entry chaincode: name:"cscc"
2018-12-19 08:14:14.474 UTC [endorser] callChaincode -> INFO 0ae [][f82208e7] Exit chaincode: name:"cscc" (1ms)
2018-12-19 08:14:14.474 UTC [comm.grpc.server] 1 -> INFO 0af unary call completed {"grpc.start_time": "2018-12-19T08:14:14.472Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56466", "grpc.code": "OK", "grpc.call_duration": "2.6178ms"}
2018-12-19 08:14:15.602 UTC [endorser] callChaincode -> INFO 0b0 [][5bfe69b4] Entry chaincode: name:"qscc"
2018-12-19 08:14:15.605 UTC [endorser] callChaincode -> INFO 0b1 [][5bfe69b4] Exit chaincode: name:"qscc" (3ms)
2018-12-19 08:14:15.605 UTC [comm.grpc.server] 1 -> INFO 0b2 unary call completed {"grpc.start_time": "2018-12-19T08:14:15.6Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56474", "grpc.code": "OK", "grpc.call_duration": "4.643ms"}
[002 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt
[003 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider
[004 01-09 08:56:43.83 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized
[005 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized
[006 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051
[007 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[008 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051
[009 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051
[00a 01-09 08:56:43.90 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled
[00b 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com
[00c 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052
[00d 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered
[00e 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered
[00f 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered
[010 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered
[011 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051]
[012 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata:
[013 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started
[014 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed
[015 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[016 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed
[017 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[018 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed
[019 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[01a 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes
[01b 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000
[01c 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated
[01d 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01e 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051]
[01f 01-09 08:56:44.45 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.454Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.453Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "153.2µs"}
[020 01-09 08:56:44.48 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.46Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:56:54.46Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "25.0531ms"}
[021 01-09 08:56:44.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.526Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.526Z", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "134.3µs"}
[022 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Entry chaincode: name:"cscc"
[023 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block
[024 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage
[025 01-09 08:56:52.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=9ms state_commit=3ms)
[026 01-09 08:56:52.14 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block
[027 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[028 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[029 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about
[02a 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1
[02b 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed
[02c 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC
[02d 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed
[02e 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC
[02f 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed
[030 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed
[031 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Exit chaincode: name:"cscc" (70ms)
[032 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.108Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47162", "grpc.code": "OK", "grpc.call_duration": "72.0132ms"}
[033 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Entry chaincode: name:"cscc"
[034 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Exit chaincode: name:"cscc" (1ms)
[035 01-09 08:56:53.40 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.397Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47170", "grpc.code": "OK", "grpc.call_duration": "2.7433ms"}
[036 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Entry chaincode: name:"qscc"
[037 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Exit chaincode: name:"qscc" (2ms)
[038 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.411Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47178", "grpc.code": "OK", "grpc.call_duration": "3.8551ms"}
[039 01-09 08:56:57.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]]
[03a 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader
[03b 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel
[03c 01-09 08:56:58.20 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer
[03d 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[03e 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[03f 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[040 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about
[041 01-09 08:56:58.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.266Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.265Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "194µs"}
[042 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.53Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.7728773s"}
[043 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.268Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.268Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.8062ms"}
[044 01-09 08:56:58.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 72ms
[045 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=0ms block_commit=15ms state_commit=6ms)
[046 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer
[047 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations
[048 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[049 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[04a 01-09 08:56:58.35 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[04b 01-09 08:56:58.38 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 68ms
[04c 01-09 08:56:58.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 97ms (state_validation=8ms block_commit=81ms state_commit=3ms)
[04d 01-09 08:56:58.53 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.529Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.528Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "707µs"}
[04e 01-09 08:56:58.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.535Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.534Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.3923ms"}
[04f 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.559Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.558Z", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "148.2µs"}
[050 01-09 08:56:58.60 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg:<membership:<endpoint:"peer1.org2.example.com:7051" pki_id:"T\007\035\226\017\365\020\207\245V/\336H\001\337\251\004\3064\306\303\303\215\240\331\202\240\261\366/\n'" > timestamp:<inc_num:1547024203615655200 seq_num:10 > > , Envelope: 83 bytes, Signature: 71 bytes isn't valid
[051 01-09 08:56:58.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.749Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.748Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "568.1µs"}
[052 01-09 08:56:58.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.756Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.755Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "31.6442ms"}
[053 01-09 08:56:58.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.807Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.806Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.7753ms"}
[054 01-09 08:56:58.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.814Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.814Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.8175ms"}
[055 01-09 08:56:58.86 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.862Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.862Z", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "260.7µs"}
[056 01-09 08:56:58.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.894Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.891Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "542.2µs"}
[057 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.901Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.901Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.7184ms"}
[058 01-09 08:56:58.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.935Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.935Z", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "132.5µs"}
[059 01-09 08:56:58.94 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.948Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.947Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "514.8µs"}
[05a 01-09 08:57:01.97 UTC] [%{longpkg}] %{callpath} -> WARN Failed reading messge from 172.24.0.5:59004, reason: Timed out waiting for connection message from 172.24.0.5:59004
[05b 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> ERRO Authentication failed: Timed out waiting for connection message from 172.24.0.5:59004
[05c 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.952Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.951Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "Timed out waiting for connection message from 172.24.0.5:59004", "grpc.code": "Unknown", "grpc.call_duration": "3.0293632s"}
[05d 01-09 08:57:02.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]]
[05e 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Entry chaincode: name:"lscc"
[05f 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer
[060 01-09 08:57:03.43 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Exit chaincode: name:"lscc" (7ms)
[061 01-09 08:57:03.44 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:03.422Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47232", "grpc.code": "OK", "grpc.call_duration": "18.9978ms"}
[062 01-09 08:57:06.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Entry chaincode: name:"lscc"
[063 01-09 08:57:06.18 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"'
[064 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Exit chaincode: name:"lscc" (36295ms)
[065 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:06.163Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47256", "grpc.code": "OK", "grpc.call_duration": "36.2996233s"}
[066 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer
[067 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 33ms
[068 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02]
[069 01-09 08:57:44.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 32ms (state_validation=3ms block_commit=18ms state_commit=6ms)
[06a 01-09 08:58:19.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Entry chaincode: name:"exp02"
[06b 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Exit chaincode: name:"exp02" (10ms)
[06c 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47324", "grpc.code": "OK", "grpc.call_duration": "20.8773ms"}
[06d 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer
[06e 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms
[06f 01-09 08:58:21.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=13ms state_commit=5ms)
[070 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Entry chaincode: name:"exp02"
[071 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Exit chaincode: name:"exp02" (3ms)
[072 01-09 08:58:22.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:22.315Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47344", "grpc.code": "OK", "grpc.call_duration": "5.3579ms"}
[073 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer
[074 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms
[075 01-09 08:58:24.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 51ms (state_validation=12ms block_commit=27ms state_commit=5ms)
[076 01-09 08:58:24.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Entry chaincode: name:"exp02"
[077 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Exit chaincode: name:"exp02" (2ms)
[078 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:24.498Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47348", "grpc.code": "OK", "grpc.call_duration": "4.7383ms"}
[079 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Entry chaincode: name:"lscc"
[07a 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Exit chaincode: name:"lscc" (2ms)
[07b 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.11Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47354", "grpc.code": "OK", "grpc.call_duration": "3.9231ms"}
[07c 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Entry chaincode: name:"lscc"
[07d 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Exit chaincode: name:"lscc" (1ms)
[07e 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.351Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47358", "grpc.code": "OK", "grpc.call_duration": "4.3327ms"}
[07f 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Entry chaincode: name:"lscc"
[080 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Exit chaincode: name:"lscc" (3ms)
[081 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.593Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47362", "grpc.code": "OK", "grpc.call_duration": "4.3485ms"}
[082 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Entry chaincode: name:"lscc"
[083 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Exit chaincode: name:"lscc" (1ms)
[084 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.769Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47366", "grpc.code": "OK", "grpc.call_duration": "2.9624ms"}
[085 01-09 08:58:25.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Entry chaincode: name:"lscc"
[086 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Exit chaincode: name:"lscc" (3ms)
[087 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.958Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47372", "grpc.code": "OK", "grpc.call_duration": "5.6599ms"}
[088 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Entry chaincode: name:"qscc"
[089 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Exit chaincode: name:"qscc" (1ms)
[08a 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.466Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47376", "grpc.code": "OK", "grpc.call_duration": "2.7496ms"}
[08b 01-09 08:58:26.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Entry chaincode: name:"qscc"
[08c 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Exit chaincode: name:"qscc" (3ms)
[08d 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.697Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47380", "grpc.code": "OK", "grpc.call_duration": "5.4929ms"}
[08e 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Entry chaincode: name:"cscc"
[08f 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Exit chaincode: name:"cscc" (1ms)
[090 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:27.26Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47384", "grpc.code": "OK", "grpc.call_duration": "3.1536ms"}
[091 01-09 08:58:28.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Entry chaincode: name:"cscc"
[092 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Exit chaincode: name:"cscc" (1ms)
[093 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.598Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47388", "grpc.code": "OK", "grpc.call_duration": "2.2332ms"}
[094 01-09 08:58:28.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Entry chaincode: name:"cscc"
[095 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Exit chaincode: name:"cscc" (1ms)
[096 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.838Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47392", "grpc.code": "OK", "grpc.call_duration": "3.7664ms"}
[097 01-09 08:58:38.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer
[098 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[099 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set
[09a 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.482Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.481Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.7µs"}
[09b 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.487Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.485Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.9µs"}
[09c 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations
[09d 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}]
[09e 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself
[09f 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}]
[0a0 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about
[0a1 01-09 08:58:38.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.507Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.507Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "206.6µs"}
[0a2 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> WARN peer1.org1.example.com:7051, PKIid:0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca isn't responsive: rpc error: code = Unavailable desc = transport is closing
[0a3 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.49Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.49Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "27.8213ms"}
[0a4 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m40.0650251s"}
[0a5 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Entering [0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca]
[0a6 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata:
[0a7 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> WARN Exiting
[0a8 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.6991747s"}
[0a9 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.504Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.504Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "28.7302ms"}
[0aa 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 179ms
[0ab 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.868Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.783359s"}
[0ac 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.534Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.533Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "11.016ms"}
[0ad 01-09 08:58:38.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=23ms state_commit=3ms)
[0ae 01-09 08:58:38.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.939Z", "grpc.peer_address": "172.24.0.4:37142", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.4µs"}
[0af 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Entry chaincode: name:"cscc"
[0b0 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Exit chaincode: name:"cscc" (1ms)
[0b1 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:48.603Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47494", "grpc.code": "OK", "grpc.call_duration": "2.1385ms"}
[0b2 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Entry chaincode: name:"qscc"
[0b3 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Exit chaincode: name:"qscc" (2ms)
[0b4 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:49.734Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47502", "grpc.code": "OK", "grpc.call_duration": "3.2676ms"}