fluent-plugin-azure-table 0.0.1 → 0.0.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: 0a844a14fe06c8bb2c7161da361728ae2b6732ba26fa4b291d76bb660a9bae5c
4
- data.tar.gz: 79ea422e41baf90fe70bd634d9bac827e3087e50af8f1a344252d956897127eb
3
+ metadata.gz: 759dae41c4b27bfc011874fefcc80322d56362fa37068416d4885ff6bee2f7d9
4
+ data.tar.gz: 46b0c9a661818880e2ee8667e9270ca6871904ef378a549775ae00a25c8a7482
5
5
  SHA512:
6
- metadata.gz: 98cfc0330eca4264d88c3766ca544bab93a99ad6b715891f49705b93b6ff92da7f9f92c21ccede9614714592dddaffc3dd3f94a5292ef1a482dbeea80d06171b
7
- data.tar.gz: 707c41d69552d8c34647ce4162bb2688095432af01e72b437468f4bfbf8e1d0b79ae48fc4e30cd6d2d07f792344393c9cf3766f8aa1cb7dd3403e2a9e3688c42
6
+ metadata.gz: 5515deb7a868fc75b83d9457219d7608267779b5c44823b1dea56de475d408529b5a60eaccc8b8f6523a4c6f8532c1e855543900cae199c16ed75643978eff64
7
+ data.tar.gz: 4ef324e7b0c9a346c8b978f1e05d23ad9d97c19aaaafd43b35c9ea0cc86c28a522130cb401c68677b6f6bc1a00b5ac70dbd17570fde6ec5fa47afc408f40b2a8
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  ## Installation
4
4
 
5
5
  ```ruby
6
- fluent-gem install fluent-plugin-azuretables
6
+ fluent-gem install fluent-plugin-azure-table
7
7
  ```
8
8
 
9
9
  ## Usage
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-azure-table"
7
- spec.version = "0.0.1"
7
+ spec.version = "0.0.2 "
8
8
  spec.authors = ["Vikram"]
9
9
  spec.email = ["vikramnisarga1@gmail.com"]
10
10
  spec.summary = "Fluentd plugin for Azure Tables Storage."
@@ -23,7 +23,7 @@ module Fluent
23
23
  config_param :row_keys, :string, :default => nil
24
24
  config_param :add_uuid_to_row_key, :bool, :default => true
25
25
  config_param :add_time_to_partition_key, :bool, :default => true
26
- config_param :add_time_row_key, :bool, :default => true
26
+ config_param :add_time_to_row_key, :bool, :default => true
27
27
 
28
28
  # This method is called before starting.
29
29
  # 'conf' is a Hash that includes configuration parameters.
@@ -88,7 +88,7 @@ module Fluent
88
88
  if @add_time_to_partition_key
89
89
  partition_keys << Time.now.strftime("%Y%m%d")
90
90
  end
91
- if @add_time_to_partition_key
91
+ if @add_time_to_row_key
92
92
  row_keys << Time.now.getutc.to_i
93
93
  end
94
94
  if @add_uuid_to_row_key
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-azure-table
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vikram
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-26 00:00:00.000000000 Z
11
+ date: 2020-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd