fluent-plugin-proxysql-query-log 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: bb6e42614c4dd70c390287edf9d9d1c2eb11f91433d44e4bd8c490090b7624c7
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: dc03e404fc9054f5b0beb60b548b99dace1f2a5e0a0f0acc31fb7c569f13dc29
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 8b99a422052d32d18d47e74f5ea5177cf0043d9c8bc7279620784554734e2bedcce14f384bbbae00e020f3d9c46aaeee2d580d4b91693ad173f9b4b7946301a5
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: fa25452e020e843c4272746153e4ca262c5b3dea67423055f01e1cac6551bf5118b9114be0567d053756386ac0c0068cf62c2d97da66243d08b71bdd060ddddf
         
     | 
    
        data/Gemfile.lock
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       2 
2 
     | 
    
         
             
              remote: .
         
     | 
| 
       3 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       4 
     | 
    
         
            -
                fluent-plugin-proxysql-query-log (0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
                fluent-plugin-proxysql-query-log (0.2.2)
         
     | 
| 
       5 
5 
     | 
    
         
             
                  cool.io
         
     | 
| 
       6 
6 
     | 
    
         
             
                  fluentd (>= 0.14.2, < 2)
         
     | 
| 
       7 
7 
     | 
    
         
             
                  proxysql_query_log-parser
         
     | 
| 
         @@ -55,4 +55,4 @@ DEPENDENCIES 
     | 
|
| 
       55 
55 
     | 
    
         
             
              test-unit (~> 3.0)
         
     | 
| 
       56 
56 
     | 
    
         | 
| 
       57 
57 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       58 
     | 
    
         
            -
               1.16. 
     | 
| 
      
 58 
     | 
    
         
            +
               1.16.4
         
     | 
| 
         @@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            Gem::Specification.new do |spec|
         
     | 
| 
       5 
5 
     | 
    
         
             
              spec.name    = "fluent-plugin-proxysql-query-log"
         
     | 
| 
       6 
     | 
    
         
            -
              spec.version = "0.2. 
     | 
| 
      
 6 
     | 
    
         
            +
              spec.version = "0.2.2"
         
     | 
| 
       7 
7 
     | 
    
         
             
              spec.authors = ["r_takaishi"]
         
     | 
| 
       8 
8 
     | 
    
         
             
              spec.email   = ["ryo.takaishi.0@gmail.com"]
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
         @@ -70,8 +70,11 @@ module Fluent 
     | 
|
| 
       70 
70 
     | 
    
         
             
                  def start_watchers(paths)
         
     | 
| 
       71 
71 
     | 
    
         | 
| 
       72 
72 
     | 
    
         
             
                    paths.each do |path|
         
     | 
| 
       73 
     | 
    
         
            -
                       
     | 
| 
       74 
     | 
    
         
            -
             
     | 
| 
      
 73 
     | 
    
         
            +
                      unless @watchers.has_key?(path)
         
     | 
| 
      
 74 
     | 
    
         
            +
                        log.debug("start watch: #{path}")
         
     | 
| 
      
 75 
     | 
    
         
            +
                        @watchers[path] = Watcher.new(path, 0, @pos_storage, router, @tag, log)
         
     | 
| 
      
 76 
     | 
    
         
            +
                        event_loop_attach(@watchers[path])
         
     | 
| 
      
 77 
     | 
    
         
            +
                      end
         
     | 
| 
       75 
78 
     | 
    
         
             
                    end
         
     | 
| 
       76 
79 
     | 
    
         
             
                  end
         
     | 
| 
       77 
80 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: fluent-plugin-proxysql-query-log
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - r_takaishi
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-08-24 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: bundler
         
     |