| // |
| // |
| // Copyright 2023 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 GRPCPP_EXT_CSM_OBSERVABILITY_H |
| #define GRPCPP_EXT_CSM_OBSERVABILITY_H |
| |
| #include <memory> |
| |
| #include "absl/functional/any_invocable.h" |
| #include "absl/status/statusor.h" |
| #include "absl/strings/string_view.h" |
| #include "opentelemetry/metrics/meter_provider.h" |
| |
| #include <grpc/support/port_platform.h> |
| #include <grpcpp/ext/otel_plugin.h> |
| |
| namespace grpc { |
| |
| namespace internal { |
| class OpenTelemetryPluginBuilderImpl; |
| } // namespace internal |
| |
| // This object maintains state around the registered CsmObservability plugin. |
| // The application is responsible for retaining this object until it has closed |
| // all channels and servers that are recording metrics. |
| class CsmObservability { |
| public: |
| CsmObservability() = default; |
| ~CsmObservability(); |
| // Disable copy constructor and copy-assignment operator. |
| CsmObservability(const CsmObservability&) = delete; |
| CsmObservability& operator=(const CsmObservability&) = delete; |
| CsmObservability(CsmObservability&&) noexcept; |
| CsmObservability& operator=(CsmObservability&&) noexcept; |
| |
| private: |
| bool valid_ = true; |
| }; |
| |
| // CsmObservabilityBuilder configures observability for all service mesh traffic |
| // for a binary running on CSM. |
| class CsmObservabilityBuilder { |
| public: |
| CsmObservabilityBuilder(); |
| ~CsmObservabilityBuilder(); |
| CsmObservabilityBuilder& SetMeterProvider( |
| std::shared_ptr<opentelemetry::metrics::MeterProvider> meter_provider); |
| // If set, \a target_attribute_filter is called per channel to decide whether |
| // to record the target attribute on client or to replace it with "other". |
| // This helps reduce the cardinality on metrics in cases where many channels |
| // are created with different targets in the same binary (which might happen |
| // for example, if the channel target string uses IP addresses directly). |
| CsmObservabilityBuilder& SetTargetAttributeFilter( |
| absl::AnyInvocable<bool(absl::string_view /*target*/) const> |
| target_attribute_filter); |
| // If set, \a generic_method_attribute_filter is called per call with a |
| // generic method type to decide whether to record the method name or to |
| // replace it with "other". Non-generic or pre-registered methods remain |
| // unaffected. If not set, by default, generic method names are replaced with |
| // "other" when recording metrics. |
| CsmObservabilityBuilder& SetGenericMethodAttributeFilter( |
| absl::AnyInvocable<bool(absl::string_view /*generic_method*/) const> |
| generic_method_attribute_filter); |
| // Builds the CsmObservability plugin. The return status shows whether |
| // CsmObservability was successfully enabled or not. |
| // |
| // The most common way to use this API is - |
| // |
| // auto observability = |
| // CsmObservabilityBuilder().SetMeterProvider(provider).BuildAndRegister(); |
| // |
| // The set of instruments available are - |
| // grpc.client.attempt.started |
| // grpc.client.attempt.duration |
| // grpc.client.attempt.sent_total_compressed_message_size |
| // grpc.client.attempt.rcvd_total_compressed_message_size |
| // grpc.server.call.started |
| // grpc.server.call.duration |
| // grpc.server.call.sent_total_compressed_message_size |
| // grpc.server.call.rcvd_total_compressed_message_size |
| absl::StatusOr<CsmObservability> BuildAndRegister(); |
| |
| private: |
| std::unique_ptr<grpc::internal::OpenTelemetryPluginBuilderImpl> builder_; |
| }; |
| |
| namespace experimental { |
| // TODO(yashykt): Remove this once no longer needed. |
| using CsmObservability GRPC_DEPRECATED("Use grpc::CsmObservability instead.") = |
| grpc::CsmObservability; |
| using CsmObservabilityBuilder GRPC_DEPRECATED( |
| "Use grpc::CsmObservabilityBuilder instead.") = |
| grpc::CsmObservabilityBuilder; |
| } // namespace experimental |
| |
| } // namespace grpc |
| |
| #endif // GRPCPP_EXT_CSM_OBSERVABILITY_H |