Skip to content

Commit 8c3e445

Browse files
committed
[new release] telemetry (0.0.1)
CHANGES: Bootstrapped the project: * Add common extensible event type * Add handle registration with `Telemetry.attach` * Add event emitting with `Telemetry.emit`
1 parent d1a8bf0 commit 8c3e445

File tree

1 file changed

+43
-0
lines changed
  • packages/telemetry/telemetry.0.0.1

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A lightweight library for dispatching and handling events, with a focus on metrics and instrumentation"
4+
description: """
5+
Telemetry is a lightweight library for dynamic dispatching of events, with a
6+
focus on metrics and instrumentation. Any OCaml library can use telemetry to
7+
emit events, then application code and other libraries can then hook into those
8+
events and run custom handlers."""
9+
maintainer: ["Leandro Ostera <[email protected]>"]
10+
authors: ["Leandro Ostera <[email protected]>"]
11+
license: "MIT"
12+
tags: ["topics" "telemetry" "events" "metrics" "instrumentation"]
13+
homepage: "https://github.com/leostera/telemetry"
14+
bug-reports: "https://github.com/leostera/telemetry/issues"
15+
depends: [
16+
"ocaml" {>= "4.12.0"}
17+
"dune" {>= "3.10"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/leostera/telemetry.git"
35+
url {
36+
src:
37+
"https://github.com/leostera/telemetry/releases/download/0.0.1/telemetry-0.0.1.tbz"
38+
checksum: [
39+
"sha256=6047fbcc2fc5db3241b5035fc89d8ece72a6a05a3532cf4ed96822385921a76f"
40+
"sha512=6cef9fdb2f7160051d77ca1a2d89c123f8f107b0c3f5e9b66feaefe630a7efe7be65e8e25f18906182ee922a1f8b1582c37ba432492a41450a70289ace2e7988"
41+
]
42+
}
43+
x-commit-hash: "ede1ca2a362b3795f7bf85590abf58792175851d"

0 commit comments

Comments
 (0)