Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
docs: custom-libp2p example print peer id in swarm addresses on start…
Browse files Browse the repository at this point in the history
…up (#2775)

Since libp2p/js-libp2p#558 js-libp2p now
requires peer ids to be part of dialled multiaddrs.

Previously a user was able to copy/paste swarm addresses printed as
part of the daemon starting up but now they can't because the peer
id is not included in the console output.

This PR prints the node's peer id as part of the swarm address to
let people continue doing this and fixes the custom-libp2p example.
  • Loading branch information
achingbrain authored and alanshaw committed Feb 13, 2020
1 parent 80f0057 commit 59df443
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions custom-libp2p/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const libp2pBundle = (opts) => {
const bootstrapList = opts.config.Bootstrap

// Build and return our libp2p node
// n.b. for full configuration options, see https://github.com/libp2p/js-libp2p/blob/master/doc/CONFIGURATION.md
return new Libp2p({
peerInfo,
peerBook,
Expand Down Expand Up @@ -91,6 +92,17 @@ const libp2pBundle = (opts) => {
pubsub: {
enabled: true
}
},
metrics: {
enabled: true,
computeThrottleMaxQueueSize: 1000, // How many messages a stat will queue before processing
computeThrottleTimeout: 2000, // Time in milliseconds a stat will wait, after the last item was added, before processing
movingAverageIntervals: [ // The moving averages that will be computed
60 * 1000, // 1 minute
5 * 60 * 1000, // 5 minutes
15 * 60 * 1000 // 15 minutes
],
maxOldPeersRetention: 50 // How many disconnected peers we will retain stats for
}
})
}
Expand Down

0 comments on commit 59df443

Please sign in to comment.