I've created a Prometheus client in TypeScript for Deno (https://deno.land)
I was going to publish under my work open source. Opening the conversation
for discussion to see if I need to do anything else. It has tests for all
the components (Histogram, Counter, Gauge, and PushGateway). Currently
there is no Summary metric, but will implement that shortly.
General usage:
```ts
import { MetricsManager } from 'https://deno.land/x/[email protected] const
httpTotalRequests = MetricsManager.getCounter("http_requests_total")
.with({ service: "web" });
httpTotalRequests.inc();
```
Currently have it here:
https://github.com/base698/promts/blob/master/src/histogram.ts
--
You received this message because you are subscribed to the Google Groups
"Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/prometheus-users/54c02fdf-6097-47e3-8bfd-dfb2b00696b9n%40googlegroups.com.