harold-kfuse
harold-kfuse
It is based on stirling_wrapper, but more stripped down. It registers table callback from Stirling and log the records. E1025 05:31:15.667604 2956193 signal_action.cc:63] Caught Segmentation fault, suspect faulting address 0x249300....
I'm using the following code to create stirling in my binary: ``` Binary::Binary() : stirling_(px::stirling::Stirling::Create( px::stirling::CreateSourceRegistry( px::stirling::GetSourceNamesForGroup( px::stirling::SourceConnectorGroup::kTracers)). ConsumeValueOrDie())), time_system_(std::make_unique()), api_(std::make_unique(time_system_.get())), dispatcher_(api_->AllocateDispatcher("binary")) { px::stirling::stirlingpb::Publish publication; stirling_->GetPublishProto(&publication); px::stirling::IndexPublication(publication, &table_info_map_); stirling_->RegisterDataPushCallback( std::bind(&Binary::CallBack,...
To deploy it, I created a yaml based on the pem_daemonset.yaml to deploy a daemonset. I used my own image.
@yzhao1012 @oazizi000 I've created a container image of the binary that just registers a callback from stirling and logs the records. I have uploaded it in dockerhub. index.docker.io/haroldkf/simple_binary:0.1.0-142d720 This is...
Pasted here an example client that simply writes/reads from pg. ``` package main import ( "flag" "fmt" "time" pg "github.com/go-pg/pg/v10" "github.com/go-pg/pg/v10/orm" ) var url = flag.String("url", "", "") var user...
I uploaded a container with the above program above in dockerhub. Below is a sample yaml to deploy in kubernetes (run kubectl apply -f pgclient.yaml): Replace the arguments accordingly. Below...
Update. I think this is related to the node image that comes with GKE. The default node image now is Container-optimized OS with containerd. There are a few other choices...
Hi @chengruizhe , I'm still seeing some issue. I can occasionally see both server and client traces now. But sometimes either server or client traces are missing completely. If I...
> Looks like a parse failure. Tagging @yzhao1012 on this issue. Maybe he could help take a look and debug the issue. @chengruizhe Should I file a new issue for...