opencensus-cpp icon indicating copy to clipboard operation
opencensus-cpp copied to clipboard

A stats collection and distributed tracing framework

Results 37 opencensus-cpp issues
Sort by recently updated
recently updated
newest added

Following the README in the `examples/grpc` directory, I ran `bazel build :all`, but got the following error: ``` C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\cl.exe /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0601 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /bigobj...

Hi, I'm trying to build the stackdriver trace exporter, from a clean ubuntu 20.04 container, using the folllowing command `bazel build //opencensus/exporters/trace/stackdriver:stackdriver_exporter` But it fails with the following error: ```...

When compiling under GCC 11.2.0 with `-std=c++20` the following line causes an error. https://github.com/census-instrumentation/opencensus-cpp/blob/afe0460f92fb78e6d6cf8c8a30ced9bc5e2e57d3/opencensus/common/internal/stats_object.h#L81 The specific error: ``` external/io_opencensus_cpp/opencensus/common/internal/stats_object.h:81:26: error: expected ')' before 'num_stats' 81 | StatsObject(uint16_t num_stats, absl::Duration interval,...

I get an error ``` external/io_opencensus_cpp/opencensus/exporters/stats/prometheus/prometheus_exporter.h:44:51: error: non-virtual member function marked 'override' hides virtual member function std::vector Collect() override; ^ bazel-out/darwin-fastbuild/bin/external/com_github_jupp0r_prometheus_cpp/core/_virtual_includes/core/prometheus/collectable.h:22:37: note: hidden overloaded virtual function 'prometheus::Collectable::Collect' declared here: different...

current docker file fails to build. Should be linked to issue #448 As a result, can't run pre-commit formatting before PR fail in CI builds. to validate rebuild the container...

do not merge yet, it is still work in progress. I probably also left quite a few comments that need removing. many enhancements to CMake support ( see #244 )...

In the `view_descriptor.cc`, we can see like this: ``` void ViewDescriptor::RegisterForExport() const { if (aggregation_window_.type() == AggregationWindow::Type::kCumulative) { StatsExporterImpl::Get()->AddView(*this); } else { std::cerr

Is there a recommended way to terminate short lived programs? I am thinking of examples, tests, or batch processes that may have completed their work but want to give OpenCensus...

When running on GCE, this should be doable via the metadata server: https://cloud.google.com/compute/docs/storing-retrieving-metadata#default