File tree Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
2
+ # 0.2
3
+
4
+ - trace-tef: additional argument to ` with_setup ` ; env for "stdout"/"stderr"
5
+ - refactor: avoid conflicting with stdlib ` Trace ` module by adding sublibrary ` trace.core ` .
6
+ Programs that use ` compiler-libs.toplevel ` should use ` trace.core `
7
+ directly, because using ` trace ` will cause linking errors.
8
+ - perf(trace-tef): improve behavior of collector under contention by
9
+ pulling all events at once in the worker
10
+
2
11
# 0.1
3
12
4
13
initial release
Original file line number Diff line number Diff line change 2
2
3
3
(name trace)
4
4
( generate_opam_files true )
5
- ( version 0 .1 )
5
+ ( version 0 .2 )
6
6
7
7
( source
8
8
( github c-cube/trace) )
14
14
15
15
( package
16
16
(name trace)
17
- (synopsis " A stub for tracing/observability" )
17
+ (synopsis " A stub for tracing/observability, agnostic in how data is collected " )
18
18
( depends
19
19
( ocaml ( >= 4 .08) )
20
20
dune)
23
23
24
24
( package
25
25
(name trace-tef)
26
- (synopsis " A simple backend for trace" )
26
+ (synopsis " A simple backend for trace, emitting Catapult JSON into a file " )
27
27
( depends
28
28
( ocaml ( >= 4 .08) )
29
29
( trace ( = :version ) )
Original file line number Diff line number Diff line change 1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
- version: "0.1 "
4
- synopsis: "A simple backend for trace"
3
+ version: "0.2 "
4
+ synopsis: "A simple backend for trace, emitting Catapult JSON into a file "
5
5
maintainer: ["Simon Cruanes"]
6
6
authors: ["Simon Cruanes"]
7
7
license: "MIT"
Original file line number Diff line number Diff line change 1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
- version: "0.1"
4
- synopsis: "A stub for tracing/observability"
3
+ version: "0.2"
4
+ synopsis:
5
+ "A stub for tracing/observability, agnostic in how data is collected"
5
6
maintainer: ["Simon Cruanes"]
6
7
authors: ["Simon Cruanes"]
7
8
license: "MIT"
You can’t perform that action at this time.
0 commit comments