logstash-input-sfdc_elf_schneider 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb031fbb111ad8cccd8c61ea3b3ed7c49a3f0cd0
4
- data.tar.gz: bb36c31bd9ae70ab4b10500e1efcc15c19d0a059
3
+ metadata.gz: 4f2fb81824d96bc2bdc96398cba6413a13ba0c09
4
+ data.tar.gz: e45e495fc7af3c2d0fc64eda8eb0e00fa40ca220
5
5
  SHA512:
6
- metadata.gz: 4947ab44d3e8719373e80b491eb7333e83cc25ab09d02be7004dc8f3e881a4d63ee04b74ee102e802f35b048730b751baeb38ed7b1d3124e957706330f179ab2
7
- data.tar.gz: b8434b9ee4af43677401d7202ef85df94f00ef6a0555c3059f430a08b542756fcca26ba48f356af49538f6a6d666256045b3c2251edaed976bc95505d24226a7
6
+ metadata.gz: 2c952e9e9b9f053b9783e09ee8806501a929e1e5cbe66f6153cf549d0bc1a08d335069df1a480c22db98b07c15929876813414cc7734960982ae424612263fb2
7
+ data.tar.gz: 32274935a5b9b89368a55750c3fad4ddb3f04afb4f59fbd680af719198a9708d926b429724756e89d89c0f6c7ce099184694e92b33a083288a10bd82f4ab9f34
data/README.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  we only support 'ApexExecution','ApexSoap','ApexTrigger','API','BulkApi','Dashboard','LightningError','LightningInteraction','LightningPageView','LightningPerformance','LoginAs','Login','Logout','MetadataApiOperation','Report','RestApi','URI','VisualforceRequest','WaveChange','WaveInteraction','WavePerformance' log types.
4
4
 
5
+ # How to publish a new version
6
+ - Make your code changes in sfdc_elf.rb, ensure any new configuration has default values
7
+ - update the gemspec file with the right version and repo
8
+ - bundle it
9
+ ```sh
10
+ gem build logstash-input-sfdc_elf_schneider.gemspec
11
+ ```
12
+ - publish it
13
+ ```sh
14
+ gem push logstash-input-sfdc_elf_schneider-1.(yourversion).gem
15
+ ```
16
+
5
17
  # Logstash Plugin for Salesforce's Event Log File
6
18
 
7
19
  The Salesforce Event Log File [Ruby Gem](https://rubygems.org/gems/logstash-input-sfdc_elf/) plug-in simplifies the integration between
@@ -104,7 +104,7 @@ class LogStash::Inputs::SfdcElf < LogStash::Inputs::Base
104
104
 
105
105
  soql_expr= "SELECT Id, EventType, Logfile, LogDate, LogFileLength, LogFileFieldTypes
106
106
  FROM EventLogFile
107
- WHERE LogDate > #{@last_indexed_log_date} and EventType in (#{@eventtypesstring}) and Sequence>0 and Interval='Hourly' ORDER BY LogDate ASC"
107
+ WHERE LogDate > #{@last_indexed_log_date} and EventType in (#{@eventtypesstring}) and Interval='Daily' ORDER BY LogDate ASC"
108
108
 
109
109
  query_result_list = @client.retryable_query(username: @username,
110
110
  password: @password.value + @security_token.value,
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-sfdc_elf_schneider'
3
- s.version = '1.0.8'
3
+ s.version = '1.0.9'
4
4
  s.licenses = ['MIT']
5
5
  s.summary = 'A Logstash plugin the receives events from Salesforce EventLogFile'
6
6
  s.description = 'This gem is a logstash plugin required to be installed on top of the Logstash core pipeline
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-sfdc_elf_schneider
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abhishek Sreenivasa
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-09-05 00:00:00.000000000 Z
13
+ date: 2019-10-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: logstash-core