#include <grpc/support/port_platform.h>
#include "src/core/lib/debug/event_log.h"
#include <algorithm>
#include <atomic>
#include "absl/strings/str_cat.h"
#include "absl/strings/str_join.h"
#include <grpc/support/log.h>
namespace grpc_core {
std::atomic<EventLog*> EventLog::g_instance_{ … };
EventLog::~EventLog() { … }
void EventLog::BeginCollection() { … }
std::vector<EventLog::Entry> EventLog::EndCollection(
absl::Span<const absl::string_view> wanted_events) { … }
void EventLog::AppendInternal(absl::string_view event, int64_t delta) { … }
std::string EventLog::EndCollectionAndReportCsv(
absl::Span<const absl::string_view> columns) { … }
}