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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a2992f8ee48b591d00b03f86ff2110a6be5726e
|
4
|
+
data.tar.gz: fe85d1bb1f4d02ba4e608a331a795cae71cd107e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
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.
|
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-
|
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.
|
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)
|