1. 首页
  2. 数据库
  3. 其它
  4. deno statsd client:用于Deno的简单StatsD客户端 源码

deno statsd client:用于Deno的简单StatsD客户端 源码

上传者: 2021-04-30 20:35:07上传 ZIP文件 22KB 热度 33次
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
用户评论