The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
4.1 KiB
124 lines
4.1 KiB
// |
|
// |
|
// Copyright 2022 gRPC authors. |
|
// |
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
// you may not use this file except in compliance with the License. |
|
// You may obtain a copy of the License at |
|
// |
|
// http://www.apache.org/licenses/LICENSE-2.0 |
|
// |
|
// Unless required by applicable law or agreed to in writing, software |
|
// distributed under the License is distributed on an "AS IS" BASIS, |
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
// See the License for the specific language governing permissions and |
|
// limitations under the License. |
|
// |
|
// |
|
|
|
#ifndef GRPC_SRC_CPP_EXT_GCP_OBSERVABILITY_LOGGING_SINK_H |
|
#define GRPC_SRC_CPP_EXT_GCP_OBSERVABILITY_LOGGING_SINK_H |
|
|
|
#include <grpc/support/port_platform.h> |
|
|
|
#include <stdint.h> |
|
|
|
#include <map> |
|
#include <memory> |
|
#include <string> |
|
#include <utility> |
|
#include <vector> |
|
|
|
#include <google/protobuf/struct.pb.h> |
|
|
|
#include "absl/base/thread_annotations.h" |
|
#include "absl/strings/string_view.h" |
|
#include "google/logging/v2/logging.grpc.pb.h" |
|
|
|
#include <grpc/event_engine/event_engine.h> |
|
|
|
#include "src/core/lib/gprpp/sync.h" |
|
#include "src/cpp/ext/filters/logging/logging_sink.h" |
|
#include "src/cpp/ext/gcp/environment_autodetect.h" |
|
#include "src/cpp/ext/gcp/observability_config.h" |
|
|
|
namespace grpc { |
|
namespace internal { |
|
|
|
// Interface for a logging sink that will be used by the logging filter. |
|
class ObservabilityLoggingSink : public LoggingSink { |
|
public: |
|
ObservabilityLoggingSink(GcpObservabilityConfig::CloudLogging logging_config, |
|
std::string project_id, |
|
std::map<std::string, std::string> labels); |
|
|
|
~ObservabilityLoggingSink() override = default; |
|
|
|
LoggingSink::Config FindMatch(bool is_client, absl::string_view service, |
|
absl::string_view method) override; |
|
|
|
void LogEntry(Entry entry) override; |
|
|
|
// Triggers a final flush of all the currently buffered logging entries and |
|
// closes the sink preventing any more entries to be logged. |
|
void FlushAndClose(); |
|
|
|
private: |
|
struct Configuration { |
|
explicit Configuration( |
|
const GcpObservabilityConfig::CloudLogging::RpcEventConfiguration& |
|
rpc_event_config); |
|
struct ParsedMethod { |
|
std::string service; |
|
std::string method; |
|
}; |
|
std::vector<ParsedMethod> parsed_methods; |
|
bool exclude = false; |
|
uint32_t max_metadata_bytes = 0; |
|
uint32_t max_message_bytes = 0; |
|
}; |
|
|
|
void RegisterEnvironmentResource( |
|
const EnvironmentAutoDetect::ResourceType* resource); |
|
|
|
// Flushes the currently stored entries. \a timed_flush denotes whether this |
|
// Flush was triggered from a timer. |
|
void Flush(); |
|
void FlushEntriesHelper( |
|
google::logging::v2::LoggingServiceV2::StubInterface* stub, |
|
std::vector<Entry> entries, |
|
const EnvironmentAutoDetect::ResourceType* resource); |
|
|
|
void MaybeTriggerFlush(); |
|
void MaybeTriggerFlushLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_); |
|
|
|
std::vector<Configuration> client_configs_; |
|
std::vector<Configuration> server_configs_; |
|
const std::string project_id_; |
|
std::string authority_; |
|
const std::vector<std::pair<std::string, std::string>> labels_; |
|
grpc_core::Mutex mu_; |
|
bool registered_env_fetch_notification_ = false; |
|
std::shared_ptr<grpc_event_engine::experimental::EventEngine> ABSL_GUARDED_BY( |
|
mu_) event_engine_; |
|
std::unique_ptr<google::logging::v2::LoggingServiceV2::StubInterface> stub_ |
|
ABSL_GUARDED_BY(mu_); |
|
std::vector<Entry> entries_ ABSL_GUARDED_BY(mu_); |
|
uint64_t entries_memory_footprint_ ABSL_GUARDED_BY(mu_) = 0; |
|
const EnvironmentAutoDetect::ResourceType* resource_ ABSL_GUARDED_BY(mu_) = |
|
nullptr; |
|
bool flush_triggered_ ABSL_GUARDED_BY(mu_) = false; |
|
bool flush_in_progress_ ABSL_GUARDED_BY(mu_) = false; |
|
bool flush_timer_in_progress_ ABSL_GUARDED_BY(mu_) = false; |
|
bool sink_closed_ ABSL_GUARDED_BY(mu_) = false; |
|
grpc_core::CondVar sink_flushed_after_close_; |
|
}; |
|
|
|
// Exposed for just for testing purposes |
|
void EntryToJsonStructProto(LoggingSink::Entry entry, |
|
::google::protobuf::Struct* json_payload); |
|
|
|
} // namespace internal |
|
} // namespace grpc |
|
|
|
#endif // GRPC_SRC_CPP_EXT_GCP_OBSERVABILITY_LOGGING_SINK_H
|
|
|