fluent-plugin-anomalydetect 0.1.6 → 0.1.7
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 +4 -4
- data/.travis.yml +2 -2
- data/README.md +2 -2
- data/fluent-plugin-anormalydetect.gemspec +1 -1
- data/lib/fluent/plugin/out_anomalydetect.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9f4a4555788bd1b8dfbb93b4470c248c3642f06
|
|
4
|
+
data.tar.gz: eff491ffa399afb9dd21ee485fa5bf9879f6c3a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a81adc04f645ae9ba9b6c16aafa622fe8321e24c75de276866e2879be0f105b12a4096b0d41568c50bb3f692cf410e76831ee2d4905b252a97111b61d311624
|
|
7
|
+
data.tar.gz: f6d2bad1c9df4bb07d5cf0ab7a8222f637eaab898e378d57ebda525d2e9812d52340e0794f4ea4251056f969c04df9d5c136aa72faca4c0c23610863a20294ff
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Fluent::Plugin::Anomalydetect [](https://travis-ci.org/muddydixon/fluent-plugin-anomalydetect)
|
|
1
|
+
# Fluent::Plugin::Anomalydetect, a plugin for [Fluentd](http://fluentd.org) [](https://travis-ci.org/muddydixon/fluent-plugin-anomalydetect)
|
|
2
2
|
|
|
3
3
|
To detect anomaly for log stream, use this plugin.
|
|
4
4
|
Then you can find changes in logs casually.
|
|
@@ -168,7 +168,7 @@ If "trend" option was specified, plugin only ouput when the input data tends to
|
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
## Theory
|
|
171
|
-
|
|
171
|
+
[データマイニングによる異常検知](http://amzn.to/XHXNun)
|
|
172
172
|
|
|
173
173
|
# ToDo
|
|
174
174
|
|
|
@@ -3,7 +3,7 @@ lib = File.expand_path('../lib', __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.name = "fluent-plugin-anomalydetect"
|
|
6
|
-
gem.version = "0.1.
|
|
6
|
+
gem.version = "0.1.7"
|
|
7
7
|
gem.authors = ["Muddy Dixon"]
|
|
8
8
|
gem.email = ["muddydixon@gmail.com"]
|
|
9
9
|
gem.description = %q{detect anomal sequential input casually}
|
|
@@ -319,7 +319,7 @@ module Fluent
|
|
|
319
319
|
@outliers = stored[:outliers]
|
|
320
320
|
@outlier_bufs = stored[:outlier_bufs]
|
|
321
321
|
@scores = stored[:scores]
|
|
322
|
-
@
|
|
322
|
+
@outliers.each {|outlier| outlier.log = log } # @log is not dumped, so have to set at here
|
|
323
323
|
else
|
|
324
324
|
log.warn "anomalydetect: configuration param was changed. ignore stored data"
|
|
325
325
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-anomalydetect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muddy Dixon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
version: '0'
|
|
119
119
|
requirements: []
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 2.0.
|
|
121
|
+
rubygems_version: 2.0.3
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: detect anomal sequential input casually
|