feat(tvix/cli,store): add tracy feature
If compiled with this features, this emits packets compatible with the [Tracy](https://github.com/wolfpld/tracy) format. Change-Id: I330f5d85ab290abe51f2df38dc55464f3ccfc6cd Reviewed-on: https://cl.tvl.fyi/c/depot/+/11815 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
This commit is contained in:
parent
cd0b92419a
commit
01aadace80
3 changed files with 11 additions and 2 deletions
|
@ -13546,7 +13546,10 @@ rec {
|
|||
packageId = "wu-manber";
|
||||
}
|
||||
];
|
||||
|
||||
features = {
|
||||
"tracy" = [ "tvix-tracing/tracy" ];
|
||||
};
|
||||
resolvedDefaultFeatures = [ "default" "tracy" ];
|
||||
};
|
||||
"tvix-eval" = rec {
|
||||
crateName = "tvix-eval";
|
||||
|
@ -14175,9 +14178,10 @@ rec {
|
|||
"fuse" = [ "tvix-castore/fuse" ];
|
||||
"otlp" = [ "tvix-tracing/otlp" ];
|
||||
"tonic-reflection" = [ "dep:tonic-reflection" "tvix-castore/tonic-reflection" ];
|
||||
"tracy" = [ "tvix-tracing/tracy" ];
|
||||
"virtiofs" = [ "tvix-castore/virtiofs" ];
|
||||
};
|
||||
resolvedDefaultFeatures = [ "cloud" "default" "fuse" "integration" "otlp" "tonic-reflection" "virtiofs" ];
|
||||
resolvedDefaultFeatures = [ "cloud" "default" "fuse" "integration" "otlp" "tonic-reflection" "tracy" "virtiofs" ];
|
||||
};
|
||||
"tvix-tracing" = rec {
|
||||
crateName = "tvix-tracing";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue