mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 11:57:44 +08:00
adds a plugin to log just peerIDs for nodes we connect to, to allow us to see how many unique peers a node connects to over time.
It's set up a preloaded plugin, so it would be enabled by default. We may want to extract it to a seperate repo so we can make it an optional add on.
**Usage**
```console
$ GOLOG_FILE=~/peer.log IPFS_LOGGING_FMT=json ipfs daemon
```
**output**
```json
{"level":"info","ts":"2020-02-10T13:54:26.639Z","logger":"plugin/peerlog","caller":"peerlog/peerlog.go:51","msg":"connected","peer":"QmS2H72gdrekXJggGdE9SunXPntBqdkJdkXQJjuxcH8Cbt"}
{"level":"info","ts":"2020-02-10T13:54:59.095Z","logger":"plugin/peerlog","caller":"peerlog/peerlog.go:56","msg":"disconnected","peer":"QmS2H72gdrekXJggGdE9SunXPntBqdkJdkXQJjuxcH8Cbt"}
```
License: MIT
Signed-off-by: Oli Evans <oli@tableflip.io>
22 lines
678 B
Go
22 lines
678 B
Go
package loader
|
|
|
|
import (
|
|
pluginbadgerds "github.com/ipfs/go-ipfs/plugin/plugins/badgerds"
|
|
pluginflatfs "github.com/ipfs/go-ipfs/plugin/plugins/flatfs"
|
|
pluginipldgit "github.com/ipfs/go-ipfs/plugin/plugins/git"
|
|
pluginlevelds "github.com/ipfs/go-ipfs/plugin/plugins/levelds"
|
|
pluginpeerlog "github.com/ipfs/go-ipfs/plugin/plugins/peerlog"
|
|
)
|
|
|
|
// DO NOT EDIT THIS FILE
|
|
// This file is being generated as part of plugin build process
|
|
// To change it, modify the plugin/loader/preload.sh
|
|
|
|
func init() {
|
|
Preload(pluginipldgit.Plugins...)
|
|
Preload(pluginbadgerds.Plugins...)
|
|
Preload(pluginflatfs.Plugins...)
|
|
Preload(pluginlevelds.Plugins...)
|
|
Preload(pluginpeerlog.Plugins...)
|
|
}
|