Skip to content
Snippets Groups Projects
Select Git revision
  • e68d3f27866428221f54f34606e89c24dd042274
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

metrics.go

Blame
  • plugins.go 1.08 KiB
    package webapi
    
    import (
    	"github.com/iotaledger/goshimmer/plugins/webapi"
    	webapi_broadcastData "github.com/iotaledger/goshimmer/plugins/webapi/broadcastData"
    	webapi_findTransactionHashes "github.com/iotaledger/goshimmer/plugins/webapi/findTransactionHashes"
    	webapi_getNeighbors "github.com/iotaledger/goshimmer/plugins/webapi/getNeighbors"
    	webapi_getTransactionObjectsByHash "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionObjectsByHash"
    	webapi_getTransactionTrytesByHash "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionTrytesByHash"
    	webapi_gtta "github.com/iotaledger/goshimmer/plugins/webapi/gtta"
    	webapi_spammer "github.com/iotaledger/goshimmer/plugins/webapi/spammer"
    	webapi_auth "github.com/iotaledger/goshimmer/plugins/webauth"
    	"github.com/iotaledger/hive.go/node"
    )
    
    var PLUGINS = node.Plugins(
    	webapi.PLUGIN,
    	webapi_auth.PLUGIN,
    	webapi_gtta.PLUGIN,
    	webapi_spammer.PLUGIN,
    	webapi_broadcastData.PLUGIN,
    	webapi_getTransactionTrytesByHash.PLUGIN,
    	webapi_getTransactionObjectsByHash.PLUGIN,
    	webapi_findTransactionHashes.PLUGIN,
    	webapi_getNeighbors.PLUGIN,
    )