git.delta.rocks / unique-network / refs/commits / a4493204da10

difftreelog

disable prometheus in zombienet

Konstantin Astakhov2023-06-07parent: #87b886a.patch.diff
in: master

1 file changed

modified.docker/forkless-config/zombienet-forkless-data.tomldiffbeforeafterboth
before · .docker/forkless-config/zombienet-forkless-data.toml
1[settings]2provider = "native"34[relaychain]5default_command = "/polkadot/target/release/polkadot"6default_args = [ "-lparachain::candidate_validation=debug", "-lxcm=trace", ]7chain = "{{ RELAY_CHAIN_TYPE }}-local"89  [[relaychain.nodes]]10  name = "relay-alice"11  ws_port = 984412  rpc_port = 984313  p2p_port = 3044414  prometheus_port = 3304415  # Zombienet does not grant the default balance to nodes created with [[nodes]].16  balance = 20000000000001718  [[relaychain.nodes]]19  name = "relay-bob"20  ws_port = 985521  rpc_port = 985422  p2p_port = 3055523  prometheus_port = 3305524  # Zombienet does not grant the default balance to nodes created with [[nodes]].25  balance = 20000000000002627  [[relaychain.nodes]]28  name = "relay-charlie"29  ws_port = 986630  rpc_port = 986531  p2p_port = 3066632  prometheus_port = 3306633  # Zombienet does not grant the default balance to nodes created with [[nodes]].34  balance = 20000000000003536  [[relaychain.nodes]]37  name = "relay-dave"38  ws_port = 987739  rpc_port = 987640  p2p_port = 3077741  prometheus_port = 3307742  # Zombienet does not grant the default balance to nodes created with [[nodes]].43  balance = 20000000000004445  [[relaychain.nodes]]46  name = "relay-eve"47  ws_port = 988848  rpc_port = 988749  p2p_port = 308850  prometheus_port = 3308851  # Zombienet does not grant the default balance to nodes created with [[nodes]].52  balance = 20000000000005354[[parachains]]55id = 100056chain_spec_modifier_commands = [[57  "chainql",58  "--tla-code=rawSpec=import '{{'raw'|chainSpec}}'",59  "--tla-str=forkFrom={{ REPLICA_FROM }}",60  "fork.jsonnet",61]]6263  [[parachains.collators]]64  name = "alice"65  command = "/unique-chain/current/release/unique-collator"66  ws_port = 994467  rpc_port = 993368  p2p_port = 3120069  prometheus_port = 3314470  args = [71    "-lxcm=trace,parity_ws::handler=debug,jsonrpsee_core=trace,jsonrpsee-core=trace,jsonrpsee_ws_server=debug",72  ]7374  [[parachains.collators]]75  name = "bob"76  command = "/unique-chain/current/release/unique-collator"77  ws_port = 994578  rpc_port = 993479  p2p_port = 3120180  prometheus_port = 3315581  args = [82    "-lxcm=trace,parity_ws::handler=debug,jsonrpsee_core=trace,jsonrpsee-core=trace,jsonrpsee_ws_server=debug",83  ]
after · .docker/forkless-config/zombienet-forkless-data.toml
1[settings]2provider = "native"34[relaychain]5default_command = "/polkadot/target/release/polkadot"6default_args = [ "-lparachain::candidate_validation=debug", "-lxcm=trace", ]7chain = "{{ RELAY_CHAIN_TYPE }}-local"89  [[relaychain.nodes]]10  name = "relay-alice"11  ws_port = 984412  rpc_port = 984313  p2p_port = 3044414  #prometheus_port = 3304415  prometheus = false16  # Zombienet does not grant the default balance to nodes created with [[nodes]].17  balance = 20000000000001819  [[relaychain.nodes]]20  name = "relay-bob"21  ws_port = 985522  rpc_port = 985423  p2p_port = 3055524  #prometheus_port = 3305525  prometheus = false26  # Zombienet does not grant the default balance to nodes created with [[nodes]].27  balance = 20000000000002829  [[relaychain.nodes]]30  name = "relay-charlie"31  ws_port = 986632  rpc_port = 986533  p2p_port = 3066634  #prometheus_port = 3306635  prometheus = false36  # Zombienet does not grant the default balance to nodes created with [[nodes]].37  balance = 20000000000003839  [[relaychain.nodes]]40  name = "relay-dave"41  ws_port = 987742  rpc_port = 987643  p2p_port = 3077744  #prometheus_port = 3307745  prometheus = false46  # Zombienet does not grant the default balance to nodes created with [[nodes]].47  balance = 20000000000004849  [[relaychain.nodes]]50  name = "relay-eve"51  ws_port = 988852  rpc_port = 988753  p2p_port = 308854  #prometheus_port = 3308855  prometheus = false56  # Zombienet does not grant the default balance to nodes created with [[nodes]].57  balance = 20000000000005859[[parachains]]60id = 100061chain_spec_modifier_commands = [[62  "chainql",63  "--tla-code=rawSpec=import '{{'raw'|chainSpec}}'",64  "--tla-str=forkFrom={{ REPLICA_FROM }}",65  "fork.jsonnet",66]]6768  [[parachains.collators]]69  name = "alice"70  command = "/unique-chain/current/release/unique-collator"71  ws_port = 994472  rpc_port = 993373  p2p_port = 3120074  #prometheus_port = 3314475  prometheus = false76  args = [77    "-lxcm=trace,parity_ws::handler=debug,jsonrpsee_core=trace,jsonrpsee-core=trace,jsonrpsee_ws_server=debug",78  ]7980  [[parachains.collators]]81  name = "bob"82  command = "/unique-chain/current/release/unique-collator"83  ws_port = 994584  rpc_port = 993485  p2p_port = 3120186  #prometheus_port = 3315587  prometheus = false88  args = [89    "-lxcm=trace,parity_ws::handler=debug,jsonrpsee_core=trace,jsonrpsee-core=trace,jsonrpsee_ws_server=debug",90  ]