Sha256: 97d2cc7e40d289c14787268cbf8bd25038a4adc435b14ca99d4d6928d19bcbe0

Contents?: true

Size: 1.84 KB

Versions: 8

Compression:

Stored size: 1.84 KB

Contents

# Copyright 2019 Google Inc. All rights reserved.
#
# 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.
require 'fluent/plugin/input'
require 'objspace'

module Fluent
  # Dump out all live objects to json files. Each file is a snapshot of the Ruby
  # heap at that time. See http://tmm1.net/ruby21-objspace/ for more details.
  class ObjectSpaceDumpInput < Fluent::Plugin::Input
    Fluent::Plugin.register_input('object_space_dump', self)

    helpers :timer

    def initialize
      super

      ObjectSpace.trace_object_allocations_start
    end

    # Make sure you have enough disk space, because these files are large
    # (roughly 50MB).
    config_param :emit_interval, :time, default: 3600

    def multi_workers_ready?
      true
    end

    def start
      super

      # Dump during startup. The timer only fires after @emit_interval.
      on_timer
      timer_execute(:object_space_dump_input, @emit_interval,
                    &method(:on_timer))
    end

    def on_timer
      GC.start
      # Use Tempfile.create to open the file, in order to preserve the file.
      file = Tempfile.create(["heap-#{fluentd_worker_id}-", '.json'])
      begin
        log.info 'dumping object space to',
                 filepath: file.path,
                 worker: fluentd_worker_id
        ObjectSpace.dump_all(output: file)
      ensure
        file.close
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fluent-plugin-google-cloud-0.13.3 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-google-cloud-0.13.2 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-vadimberezniker-gcp-0.1.2 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-vadimberezniker-gcp-0.1.1 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-vadimberezniker-gcp-0.1.0 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-google-cloud-0.13.1 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-google-cloud-0.13.0 lib/fluent/plugin/in_object_space_dump.rb
fluent-plugin-google-cloud-0.12.11 lib/fluent/plugin/in_object_space_dump.rb