logstash-input-google-analytics-daily 0.5.0 → 0.6.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 807831c7ebd0fbddd9e3424cd7df4feeaf63185dcf2feba9ead6d012b6c90ed0
|
|
4
|
+
data.tar.gz: 6d9802cbcad8f8478865c76cfa2df5bb5fd9ebdba13dab40b56314b298977634
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7421f1331d6f63deaba5a755571aec4e14ebf2ec09d53acecea2a70eec0eb517847fbf5f4db2bfe4ceeb859f59ffdf08780dae87fc6274893ebd8d42cea3c962
|
|
7
|
+
data.tar.gz: ef4f89117062a12a8a8e3d6dbaacdf6379620f2e68a0b3b444f4c806b96c98608a6911459d90f7b20f89af56a9e9826c25f95f6099ec9e4fd94fcb3f8af52504
|
|
@@ -29,9 +29,9 @@ class LogStash::Inputs::GoogleAnalyticsDaily < LogStash::Inputs::Base
|
|
|
29
29
|
|
|
30
30
|
# This plugin will fetch daily reports for dates in the specified range
|
|
31
31
|
# In the format YYYY-MM-DD
|
|
32
|
-
config :start_date, :validate => :string, :default => Date.today.to_s
|
|
32
|
+
config :start_date, :validate => :string, :default => (Date.today - 1).to_s
|
|
33
33
|
|
|
34
|
-
config :end_date, :validate => :string, :default => Date.today.to_s
|
|
34
|
+
config :end_date, :validate => :string, :default => (Date.today - 1).to_s
|
|
35
35
|
|
|
36
36
|
# The aggregated statistics for user activity to your site, such as clicks or pageviews.
|
|
37
37
|
# Maximum of 10 metrics for any query
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-google-analytics-daily'
|
|
3
|
-
s.version = '0.
|
|
3
|
+
s.version = '0.6.0'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Logstash plugin to pull daily reports from Google Analytics."
|
|
6
6
|
s.description = "Logstash plugin to pull daily reports from the Google Analytics v3 Core Reporting API. Install into Logstash using $LS_HOME/bin/logstash-plugin install logstash-input-google-analytics-daily."
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-google-analytics-daily
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shalvah
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|