Windel Bouwman
Windel Bouwman
It would be nice to find some common trait for this, and implement this trait for the bigint type. Example of something that might be of use: https://doc.servo.org/malloc_size_of/trait.MallocSizeOf.html Example: ```rust...
It would maybe make sense to move the lexer / parser into its own crate. I would certainly like that for using it in my project: https://github.com/windelbouwman/rspython Also see another...
Not sure this is the right place to ask, but travis-ci.org has support for linux and mac. Might it be a good idea to add integration with travis to check...
This might also be of help. Almar did some experiment translating python into wasm: https://github.com/windelbouwman/ppci-mirror/blob/master/ppci/lang/python/python2wasm.py Another helpful utility: https://wasdk.github.io/WasmFiddle/ And also: https://ppci.readthedocs.io/en/latest/reference/cli.html#ppci-wabt
No problemo! The TSDB is all in memory, so it might even be more a simple data structure, and it supports timestamp / f64 pairs as well as timestamp /...
Okay, now I understand what you mean by structured format. No, lognplot cannot handle this directly, the simplest solution to this would be to write a python adapter script which...
That would be an interesting idea. Currently my incentive is low, since I do not use hawktracer yet. My approach would be to take the hello world example, run the...
Allright, this example looks straight forward, and I know how to hook it up to lognplot GUI. This seems rather easy to take the applicable parts of the plot-events.py and...
Okay, a first prototype is here: https://github.com/amzn/hawktracer/pull/79 Things to note: - I used the hello-world-c example, and added a tcp listener like this `ht_tcp_listener_register( ht_global_timeline_get(), 9876, 2048, &error_code);`. Not all...
Hi, yes, it's two fully redundant implementations. The python version lends itself for experiments, but is many times slower. I did not benchmark this, but my advice is to use...