You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
void ViewDescriptor::RegisterForExport() const {
if (aggregation_window_.type() == AggregationWindow::Type::kCumulative) {
StatsExporterImpl::Get()->AddView(*this);
} else {
std::cerr << "Only cumulative views may be registered for export.\n";
}
}
Only cumulative views may be registered for export.
I modify this and find kDelta views can be registered for export and work well.
So i am a little confused, why opencensus don't support kDelta views to report.
The text was updated successfully, but these errors were encountered:
void ViewDescriptor::RegisterForExport() const {
if (aggregation_window_.type() == AggregationWindow::Type::kCumulative) {
StatsExporterImpl::Get()->AddView(*this);
} else {
std::cerr << "Only cumulative views may be registered for export.\n";
}
}
Only cumulative views may be registered for export.
I modify this and find kDelta views can be registered for export and work well.
So i am a little confused, why opencensus don't support kDelta views to report.#456 (comment)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the
view_descriptor.cc
, we can see like this:Only cumulative views may be registered for export.
I modify this and find
kDelta
views can be registered for export and work well.So i am a little confused, why opencensus don't support kDelta views to report.
The text was updated successfully, but these errors were encountered: