Sha256: 3dd3f1c6a0ee1e8885de7da4f6d15014d1e696e20d39eaa219ec507ae8bfe87f
Contents?: true
Size: 1.11 KB
Versions: 37
Compression:
Stored size: 1.11 KB
Contents
# # Fluentd Kubernetes Metadata Filter Plugin - Enrich Fluentd events with # Kubernetes metadata # # Copyright 2015 Red Hat, Inc. # # 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_relative '../helper' require 'fluent/plugin/kubernetes_metadata_stats' require 'webmock/test_unit' WebMock.disable_net_connect! class KubernetesMetadataCacheStatsTest < Test::Unit::TestCase test 'watch stats' do require 'lru_redux' stats = KubernetesMetadata::Stats.new stats.bump(:missed) stats.bump(:deleted) stats.bump(:deleted) assert_equal("stats - deleted: 2, missed: 1", stats.to_s) end end
Version data entries
37 entries across 37 versions & 4 rubygems