logstash-output-kinesis-iot 0.1.10-java → 0.1.12-java
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 +4 -4
 - data/lib/logstash/outputs/kinesis-iot.rb +3 -2
 - data/logstash-output-kinesis-iot.gemspec +2 -2
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 5e76a026d37a14d108cc8f158ac2b74dac29385457734e2faadd77229e9115ff
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 64b1d735212f6ecc4a63a375e7bc4a7fcdc1d939e0577baf29fa976ba587f99c
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 6fd0cb0d7bde124326b11c4157e4f429b37e59852a09b190043098823844f6c2e172f3e77a3f766f05360aa2be271adfe65096d3e89f59f76e17a7295ea5b34a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 2aa08b0deeed5c64fbe1569cbc2ee6ca74ebe89ec9a587895ad30fca55668243c73194c62345b9c55bb568d5a14859b2ae006c451281aa24175a498787664573
         
     | 
| 
         @@ -90,17 +90,18 @@ class LogStash::Outputs::KinesisIOT < LogStash::Outputs::Base 
     | 
|
| 
       90 
90 
     | 
    
         | 
| 
       91 
91 
     | 
    
         
             
                response = http.request(request)
         
     | 
| 
       92 
92 
     | 
    
         
             
                result = JSON.parse(response.body)["credentials"]
         
     | 
| 
      
 93 
     | 
    
         
            +
                @logger.info("Credentials expire at " +Time.parse(result["expiration"]).to_s)
         
     | 
| 
       93 
94 
     | 
    
         
             
                return AWSIOTCreds.new(result["accessKeyId"], result["secretAccessKey"], result["sessionToken"],
         
     | 
| 
       94 
95 
     | 
    
         
             
                                       Time.parse(result["expiration"]))
         
     | 
| 
       95 
96 
     | 
    
         
             
              end
         
     | 
| 
       96 
97 
     | 
    
         | 
| 
       97 
98 
     | 
    
         
             
              def init_aws
         
     | 
| 
       98 
     | 
    
         
            -
                @logger.info("Set AWS Credentials")
         
     | 
| 
       99 
99 
     | 
    
         
             
                Aws.config.update({
         
     | 
| 
       100 
100 
     | 
    
         
             
                  region: @region,
         
     | 
| 
       101 
101 
     | 
    
         
             
                  credentials: Aws::Credentials.new(@creds.accessKeyId, @creds.secretAccessKey, @creds.sessionToken)
         
     | 
| 
       102 
102 
     | 
    
         
             
                })
         
     | 
| 
       103 
103 
     | 
    
         
             
                # Initialize Kinesis client
         
     | 
| 
      
 104 
     | 
    
         
            +
                @logger.info("Set AWS Credentials")
         
     | 
| 
       104 
105 
     | 
    
         
             
                @kinesis = Aws::Kinesis::Client.new
         
     | 
| 
       105 
106 
     | 
    
         
             
                  # send data to kinesis
         
     | 
| 
       106 
107 
     | 
    
         
             
              end
         
     | 
| 
         @@ -151,7 +152,7 @@ class LogStash::Outputs::KinesisIOT < LogStash::Outputs::Base 
     | 
|
| 
       151 
152 
     | 
    
         
             
              end
         
     | 
| 
       152 
153 
     | 
    
         
             
              def send_record(event, payload)
         
     | 
| 
       153 
154 
     | 
    
         
             
                begin
         
     | 
| 
       154 
     | 
    
         
            -
                  renew_aws() unless @creds.expiration  
     | 
| 
      
 155 
     | 
    
         
            +
                  renew_aws() unless @creds.expiration >= Time.now() + 1
         
     | 
| 
       155 
156 
     | 
    
         
             
                  response = @kinesis.put_record({
         
     | 
| 
       156 
157 
     | 
    
         
             
                    stream_name: @stream_name,
         
     | 
| 
       157 
158 
     | 
    
         
             
                    data: payload,
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       2 
2 
     | 
    
         
             
              s.name = 'logstash-output-kinesis-iot'
         
     | 
| 
       3 
     | 
    
         
            -
              s.version         = '0.1. 
     | 
| 
      
 3 
     | 
    
         
            +
              s.version         = '0.1.12'
         
     | 
| 
       4 
4 
     | 
    
         
             
              s.licenses = ['Apache-2.0']
         
     | 
| 
       5 
5 
     | 
    
         
             
              s.summary = "Sends data to a AWS kinesis,  "
         
     | 
| 
       6 
6 
     | 
    
         
             
              s.description     = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
         
     | 
| 
         @@ -8,7 +8,7 @@ Gem::Specification.new do |s| 
     | 
|
| 
       8 
8 
     | 
    
         
             
              s.email = "jeremy@frandon.net"
         
     | 
| 
       9 
9 
     | 
    
         
             
              s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
         
     | 
| 
       10 
10 
     | 
    
         
             
              s.require_paths = ["lib"]
         
     | 
| 
       11 
     | 
    
         
            -
              s.platform =  
     | 
| 
      
 11 
     | 
    
         
            +
              s.platform =   "java" #if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'
         
     | 
| 
       12 
12 
     | 
    
         
             
              # Files
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
         
     | 
| 
       14 
14 
     | 
    
         
             
               # Tests
         
     |