UNPKG
@kyve/core-beta
Version:
latest (1.23.0)
1.23.0
1.22.0
1.21.7
🚀 The base KYVE node implementation.
github.com/KYVENetwork/core
KYVENetwork/node
@kyve/core-beta
/
dist
/
src
/
methods
/
setups
/
setupMetrics.d.ts
11 lines
(10 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Node
}
from
"../.."
;
/** * setupMetrics initiates all metrics and starts if enabled a local prometheus * metrics server * *
@method
setupMetrics
*
@param
{
Node
}
this
*
@return
{
Promise<void>
} */
export
declare
function
setupMetrics
(
this
: Node
):
void
;