mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-16 09:55:07 +00:00
16 lines
554 B
Nim
16 lines
554 B
Nim
# Copyright (c) 2021 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license: http://opensource.org/licenses/MIT
|
|
# * Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
import ../metrics, ../metrics/stdlib_httpserver,
|
|
os, httpclient
|
|
|
|
startMetricsHttpServer()
|
|
sleep(1000)
|
|
when defined(metrics):
|
|
var client = newHttpClient()
|
|
echo client.getContent("http://127.0.0.1:8000/metrics")
|
|
|