deno statsd client:用于Deno的简单StatsD客户端 源码
deno-statsd客户端 一个用于Deno的简单StatsD客户端。 由于Deno的UDP内容仍然不稳定,因此您需要使用--unstable来使用UDP服务器。 另外,您需要使用--allow-net启用网络访问。 import { StatsDClient } from "https://deno.land/x/statsd@0.1.1/mod.ts" ; const client = new StatsDClient ( { server : { proto : "udp" , host : "localhost" , port : 8125 , } , } ) ; // Count an event: client . count ( "http.routes.get_resource" ) ; // Track how long someth
用户评论