| // Copyright 2024 The 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. |
| |
| #include "src/core/telemetry/metrics.h" |
| |
| #include <grpc/impl/channel_arg_names.h> |
| #include <grpc/support/port_platform.h> |
| |
| #include <memory> |
| #include <optional> |
| |
| #include "src/core/util/crash.h" |
| #include "src/core/util/grpc_check.h" |
| |
| namespace grpc_core { |
| |
| // Uses the Construct-on-First-Use idiom to avoid the static initialization |
| // order fiasco. |
| std::vector<GlobalInstrumentsRegistry::GlobalInstrumentDescriptor>& |
| GlobalInstrumentsRegistry::GetInstrumentList() { |
| static NoDestruct< |
| std::vector<GlobalInstrumentsRegistry::GlobalInstrumentDescriptor>> |
| instruments; |
| return *instruments; |
| } |
| |
| GlobalInstrumentsRegistry::InstrumentID |
| GlobalInstrumentsRegistry::RegisterInstrument( |
| GlobalInstrumentsRegistry::ValueType value_type, |
| GlobalInstrumentsRegistry::InstrumentType instrument_type, |
| absl::string_view name, absl::string_view description, |
| absl::string_view unit, bool enable_by_default, |
| absl::Span<const absl::string_view> label_keys, |
| absl::Span<const absl::string_view> optional_label_keys) { |
| auto& instruments = GetInstrumentList(); |
| for (const auto& descriptor : instruments) { |
| if (descriptor.name == name) { |
| Crash( |
| absl::StrFormat("Metric name %s has already been registered.", name)); |
| } |
| } |
| InstrumentID index = instruments.size(); |
| GRPC_CHECK_LT(index, std::numeric_limits<uint32_t>::max()); |
| GlobalInstrumentDescriptor descriptor; |
| descriptor.value_type = value_type; |
| descriptor.instrument_type = instrument_type; |
| descriptor.index = index; |
| descriptor.enable_by_default = enable_by_default; |
| descriptor.name = name; |
| descriptor.description = description; |
| descriptor.unit = unit; |
| descriptor.label_keys = {label_keys.begin(), label_keys.end()}; |
| descriptor.optional_label_keys = {optional_label_keys.begin(), |
| optional_label_keys.end()}; |
| instruments.push_back(std::move(descriptor)); |
| return index; |
| } |
| |
| void GlobalInstrumentsRegistry::ForEach( |
| absl::FunctionRef<void(const GlobalInstrumentDescriptor&)> f) { |
| for (const auto& instrument : GetInstrumentList()) { |
| f(instrument); |
| } |
| } |
| |
| const GlobalInstrumentsRegistry::GlobalInstrumentDescriptor& |
| GlobalInstrumentsRegistry::GetInstrumentDescriptor( |
| GlobalInstrumentHandle handle) { |
| return GetInstrumentList().at(handle.index); |
| } |
| |
| RegisteredMetricCallback::RegisteredMetricCallback( |
| GlobalStatsPluginRegistry::StatsPluginGroup& stats_plugin_group, |
| absl::AnyInvocable<void(CallbackMetricReporter&)> callback, |
| std::vector<GlobalInstrumentsRegistry::GlobalInstrumentHandle> metrics, |
| Duration min_interval) |
| : stats_plugin_group_(stats_plugin_group), |
| callback_(std::move(callback)), |
| metrics_(std::move(metrics)), |
| min_interval_(min_interval) { |
| for (auto& state : stats_plugin_group_.plugins_state_) { |
| state.plugin->AddCallback(this); |
| } |
| } |
| |
| RegisteredMetricCallback::~RegisteredMetricCallback() { |
| for (auto& state : stats_plugin_group_.plugins_state_) { |
| state.plugin->RemoveCallback(this); |
| } |
| } |
| |
| void GlobalStatsPluginRegistry::StatsPluginGroup::AddClientCallTracers( |
| const Slice& path, bool registered_method, Arena* arena) { |
| absl::InlinedVector<ClientCallTracerInterface*, 3> tracers; |
| for (auto& state : plugins_state_) { |
| auto* call_tracer = state.plugin->GetClientCallTracer( |
| path, registered_method, state.scope_config); |
| if (call_tracer != nullptr) { |
| tracers.push_back(call_tracer); |
| } |
| } |
| SetClientCallTracer(arena, tracers); |
| } |
| |
| void GlobalStatsPluginRegistry::StatsPluginGroup::AddServerCallTracers( |
| Arena* arena, |
| absl::Span<ServerCallTracerInterface* const> additional_tracers) { |
| absl::InlinedVector<ServerCallTracerInterface*, 3> tracers; |
| for (auto* tracer : additional_tracers) { |
| if (tracer != nullptr) tracers.push_back(tracer); |
| } |
| for (auto& state : plugins_state_) { |
| auto* call_tracer = state.plugin->GetServerCallTracer(state.scope_config); |
| if (call_tracer != nullptr) { |
| tracers.push_back(call_tracer); |
| } |
| } |
| SetServerCallTracer(arena, tracers); |
| } |
| |
| int GlobalStatsPluginRegistry::StatsPluginGroup::ChannelArgsCompare( |
| const StatsPluginGroup* a, const StatsPluginGroup* b) { |
| for (size_t i = 0; i < a->plugins_state_.size(); ++i) { |
| if (b->plugins_state_.size() == i) return 1; // a is greater |
| auto& a_state = a->plugins_state_[i]; |
| auto& b_state = b->plugins_state_[i]; |
| int r = QsortCompare(a_state.plugin.get(), b_state.plugin.get()); |
| if (r != 0) return r; |
| if (a_state.scope_config == nullptr) { |
| if (b_state.scope_config != nullptr) return -1; // a is less |
| // If both are null, they're equal. |
| } else { |
| if (b_state.scope_config == nullptr) return 1; // a is greater |
| // Neither is null, so compare. |
| r = a_state.scope_config->Compare(*b_state.scope_config); |
| if (r != 0) return r; |
| } |
| } |
| if (b->plugins_state_.size() > a->plugins_state_.size()) return -1; |
| return 0; |
| } |
| |
| std::atomic<GlobalStatsPluginRegistry::GlobalStatsPluginNode*> |
| GlobalStatsPluginRegistry::plugins_; |
| |
| void GlobalStatsPluginRegistry::RegisterStatsPlugin( |
| std::shared_ptr<StatsPlugin> plugin) { |
| GlobalStatsPluginNode* node = new GlobalStatsPluginNode(); |
| node->plugin = std::move(plugin); |
| node->next = plugins_.load(std::memory_order_relaxed); |
| while (!plugins_.compare_exchange_weak( |
| node->next, node, std::memory_order_acq_rel, std::memory_order_relaxed)) { |
| } |
| } |
| |
| std::shared_ptr<GlobalStatsPluginRegistry::StatsPluginGroup> |
| GlobalStatsPluginRegistry::GetStatsPluginsForChannel( |
| const experimental::StatsPluginChannelScope& scope) { |
| auto group = std::make_shared<StatsPluginGroup>(); |
| for (GlobalStatsPluginNode* node = plugins_.load(std::memory_order_acquire); |
| node != nullptr; node = node->next) { |
| auto [is_enabled, config] = node->plugin->IsEnabledForChannel(scope); |
| if (is_enabled) { |
| group->AddStatsPlugin(node->plugin, std::move(config)); |
| } |
| } |
| using StatsPluginList = |
| std::shared_ptr<std::vector<std::shared_ptr<StatsPlugin>>>; |
| auto* stats_plugin_list = |
| static_cast<StatsPluginList*>(scope.experimental_args().GetVoidPointer( |
| GRPC_ARG_EXPERIMENTAL_STATS_PLUGINS)); |
| if (stats_plugin_list != nullptr) { |
| for (const auto& plugin : **stats_plugin_list) { |
| auto [is_enabled, config] = plugin->IsEnabledForChannel(scope); |
| if (is_enabled) { |
| group->AddStatsPlugin(plugin, std::move(config)); |
| } |
| } |
| } |
| group->Finish(); |
| return group; |
| } |
| |
| std::shared_ptr<GlobalStatsPluginRegistry::StatsPluginGroup> |
| GlobalStatsPluginRegistry::GetStatsPluginsForServer(const ChannelArgs& args) { |
| auto group = std::make_shared<StatsPluginGroup>(); |
| for (GlobalStatsPluginNode* node = plugins_.load(std::memory_order_acquire); |
| node != nullptr; node = node->next) { |
| auto [is_enabled, config] = node->plugin->IsEnabledForServer(args); |
| if (is_enabled) { |
| group->AddStatsPlugin(node->plugin, std::move(config)); |
| } |
| } |
| using StatsPluginList = |
| std::shared_ptr<std::vector<std::shared_ptr<StatsPlugin>>>; |
| auto* stats_plugin_list = |
| args.GetPointer<StatsPluginList>(GRPC_ARG_EXPERIMENTAL_STATS_PLUGINS); |
| if (stats_plugin_list != nullptr) { |
| for (const auto& plugin : **stats_plugin_list) { |
| auto [is_enabled, config] = plugin->IsEnabledForServer(args); |
| if (is_enabled) { |
| group->AddStatsPlugin(plugin, std::move(config)); |
| } |
| } |
| } |
| group->Finish(); |
| return group; |
| } |
| |
| std::optional<GlobalInstrumentsRegistry::GlobalInstrumentHandle> |
| GlobalInstrumentsRegistry::FindInstrumentByName(absl::string_view name) { |
| const auto& instruments = GetInstrumentList(); |
| for (const auto& descriptor : instruments) { |
| if (descriptor.name == name) { |
| GlobalInstrumentsRegistry::GlobalInstrumentHandle handle; |
| handle.index = descriptor.index; |
| return handle; |
| } |
| } |
| return std::nullopt; |
| } |
| |
| } // namespace grpc_core |