Marcin Kolny
Marcin Kolny
Thanks for the response. HawkTracer events are more like JSON structures, and we'd like to be able to render some of the fields on the graph. E.g. we can have...
@windelbouwman thanks for explanation. I don't think there's any particular benefit of supporting unstructured data in the TSDB other than simplicity, but I see that having adapter for that would...
Even though you don't use HawkTracer yet, I think it'd be valuable for the lognplot project to do the integration as it might bring quite a few new users to...
That looks great, thanks for that! I'll have a look closer into the integration soon and update the issue then :)
@windelbouwman I've looked closer into the project; am I right that python and rust are 2 completely separate implementations? Somehow I assumed that the python lognplot is just a wrapper...
Thanks I've been trying to compile rust project, but I'm getting an error: ``` error[E0277]: the trait bound `ndarray::ArrayBase: std::convert::From` is not satisfied --> lognplotgtk/src/io.rs:95:24 | 95 | sig1.write(&signal)?; |...
Thanks, I use hd25 version 0.6.1 and have 2 versions of ndarray: 0.12.1 and 0.13.1
That worked, thanks! I slightly modified the example so I could see values from different event types: ``` timestamp = float(data["timestamp"]) / 1e9 for field_name in data: if field_name ==...
I see, thanks for the explanation. Is this feature configurable? In quite common scenario, HawkTracer creates per-thread buffers to avoid unnecessary locking, and those buffers might be flushed in different...
I'm afraid this issue will be a blocker for integrating HawkTracer with the lognplot library as multi-threaded environment is quite a common usecase for the profiler, and ignoring some events...