logstash-output-google_bigquery 0.1.2 → 0.1.3

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: c56d113295f8fe768f94e04ad1dd30a80c86fa95
4
- data.tar.gz: 6b5bb38f21ea586653c96d784bc8bf462f4d7193
3
+ metadata.gz: 6a2992f8ee48b591d00b03f86ff2110a6be5726e
4
+ data.tar.gz: fe85d1bb1f4d02ba4e608a331a795cae71cd107e
5
5
  SHA512:
6
- metadata.gz: 3c06abb2c9ad3ea07504baffa2fa2d8760b0f9a9802225e5237526b9e7fc0e8a8a773fc30dffd71701bb5912b665d72d35c0917ac20b39c532265048dd8c84f6
7
- data.tar.gz: e56a0508beff637ae8a715a00595b18810f93d1acaf24c82b221c2db29ad3ca18c10c5de9e4f024fded9d6e212008672eb4f59d47dad1e85c7d1713011579cb0
6
+ metadata.gz: a23d531dccb15b965aead9b591b0b400076ed5451469666650cb578f3187de7a3131e0acbbd85ce095851c38828310df67cdc15bb3d7af10bd740b4513611f3b
7
+ data.tar.gz: 5d10017c4141bf0227cc8dd304365f0c603b315bb171179e9e14c8a76fa15788d53ee73ea47a464803fd3263570dbea8b09926afd863f3dc85d15c6f2e942aa6
@@ -502,7 +502,7 @@ class LogStash::Outputs::GoogleBigQuery < LogStash::Outputs::Base
502
502
  table_id = @table_prefix + "_" + get_date_pattern(filename)
503
503
  # BQ does not accept anything other than alphanumeric and _
504
504
  # Ref: https://developers.google.com/bigquery/browser-tool-quickstart?hl=en
505
- table_id = table_id.gsub!(':','_').gsub!('-', '_')
505
+ table_id.tr!(':-','_')
506
506
 
507
507
  @logger.debug("BQ: upload object.",
508
508
  :filename => filename,
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-google_bigquery'
4
- s.version = '0.1.2'
4
+ s.version = '0.1.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Plugin to upload log events to Google BigQuery (BQ)"
7
7
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-google_bigquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-27 00:00:00.000000000 Z
11
+ date: 2015-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  version: '0'
96
96
  requirements: []
97
97
  rubyforge_project:
98
- rubygems_version: 2.1.9
98
+ rubygems_version: 2.4.5
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Plugin to upload log events to Google BigQuery (BQ)