Sha256: 58806d86ee114100cb632816cb02a4b5a365e49113290239917d2cce0e2ebcc1

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

# Copyright 2017 Google LLC
#
# 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
#
#     https://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.


require "google/cloud/trace"

module GRPC
  ##
  # Stackdriver Trace instrumentation of GRPC by patching GRPC::ActiveCall
  # class. Intercept each GRPC request and create a Trace span with basic
  # request information.
  module ActiveCallWithTrace
    SPAN_NAME = "gRPC request".freeze

    ##
    # Override GRPC::ActiveCall#request_response method. Wrap the original
    # method with a trace span that will get submitted with the overall request
    # trace span tree.
    def request_response *args
      Google::Cloud::Trace.in_span SPAN_NAME do |span|
        if span && !args.empty?
          grpc_request = args[0]
          label_key = Google::Cloud::Trace::LabelKey::RPC_REQUEST_TYPE
          span.labels[label_key] = grpc_request.class.name.gsub(/^.*::/, "")
        end

        super
      end
    end
  end

  # Patch GRPC::ActiveCall#request_response method
  ::GRPC::ActiveCall.prepend ActiveCallWithTrace
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
google-cloud-trace-0.41.0 lib/google/cloud/trace/patches/active_call_with_trace.rb