heka 0.0.3
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 +15 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGELOG +3 -0
- data/LICENSE +21 -0
- data/Manifest +8 -0
- data/README.md +19 -0
- data/Rakefile +15 -0
- data/heka.gemspec +34 -0
- data/lib/heka.rb +3 -0
- data/test/helper.rb +3 -0
- metadata +105 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NGJhMzY1ZDMzNDUyZDgyYjRmMTg5NmY1NGVmMTZhZTNiMWNlZTMwZg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YjBjNmQ0OWE4NzQ1M2QzYmZmMDgwZjBhM2MwNWJkOTRjNzExMGE1YQ==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZmE0OTQ1YzFlYzhiYzQ5MTUzN2ZiZDMyNGM0MWQ0NTI2MGRkZDc4YzZhZmYx
|
10
|
+
OWEyNzRmNDc2NzJlNDBmY2MwYWY3YTk2ODJhNjkwZjMwODcwMmZmMWU4YTBl
|
11
|
+
YzcyZWVkNGFmODdkMzE3ZmNlNzhlMmUyNGY4MzIzZTRlMTgxODc=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MDU3YThmYTZiNGQwZjIxMWZmMjBlNjcyZGYwNjczNmI3YmM3MDUxZjZhNjU5
|
14
|
+
NGRmNjcxMWMwMjA0Y2EzYjViYzYwYjA3NWE3ZmYyOTQ1YmFlMmZjMGViMzE1
|
15
|
+
NWNkNjc2NzRiZGVlMGI4NDI2MmExNjFiOTI2MzRlYTgzNWJkYTM=
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/CHANGELOG
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013 Sasha Gerrand
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/Manifest
ADDED
data/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# heka-rb
|
2
|
+
|
3
|
+

|
4
|
+
|
5
|
+
heka-rb is a Ruby client for the "Heka" system of application logging
|
6
|
+
and metrics gathering developed by the [Mozilla Services]
|
7
|
+
(https://wiki.mozilla.org/Services) team. The Heka system is meant to
|
8
|
+
make life easier for application developers with regard to generating and
|
9
|
+
sending logging and analytics data to various destinations. It achieves this
|
10
|
+
goal by separating the concerns of message generation from those of
|
11
|
+
message delivery and analysis. Front end application code no longer has to deal
|
12
|
+
directly with separate back end client libraries, or even know what back
|
13
|
+
end data storage and processing tools are in use. Instead, a message is
|
14
|
+
labeled with a type (and possibly other metadata) and handed to the Heka system,
|
15
|
+
which then handles ultimate message delivery.
|
16
|
+
|
17
|
+
More information about how Mozilla Services is using Heka (including
|
18
|
+
what is being used for a router and what endpoints are in use / planning to be
|
19
|
+
used) can be found on the relevant [spec page](https://wiki.mozilla.org/Services/Sagrada/Heka).
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'echoe'
|
2
|
+
|
3
|
+
Echoe.new('heka') do |gem|
|
4
|
+
gem.author = 'Sasha Gerrand'
|
5
|
+
gem.email = 'rubygems-heka@sgerrand.com'
|
6
|
+
gem.summary = 'Ruby client for the Heka application logging and metrics gathering system'
|
7
|
+
gem.url = 'https://github.com/sgerrand/heka-rb-gem'
|
8
|
+
gem.development_dependencies = ['minitest']
|
9
|
+
end
|
10
|
+
|
11
|
+
Rake::TestTask.new do |test|
|
12
|
+
test.libs << 'lib'
|
13
|
+
test.test_files = FileList['test/test*.rb']
|
14
|
+
test.verbose = true
|
15
|
+
end
|
data/heka.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = "heka"
|
5
|
+
s.version = "0.0.3"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Sasha Gerrand"]
|
9
|
+
s.cert_chain = ["/Users/sg/Dropbox/Private/certs/au.id.smg-rubygems-gem-public_key.pem"]
|
10
|
+
s.date = "2013-04-30"
|
11
|
+
s.description = "Ruby client for the Heka application logging and metrics gathering system"
|
12
|
+
s.email = "rubygems-heka@sgerrand.com"
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.md", "lib/heka.rb"]
|
14
|
+
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.md", "Rakefile", "heka.gemspec", "lib/heka.rb", "test/helper.rb"]
|
15
|
+
s.homepage = "https://github.com/sgerrand/heka-rb-gem"
|
16
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Heka", "--main", "README.md"]
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
s.rubyforge_project = "heka"
|
19
|
+
s.rubygems_version = "2.0.3"
|
20
|
+
s.signing_key = "/Users/sg/Dropbox/Private/certs/au.id.smg-rubygems-gem-private_key.pem"
|
21
|
+
s.summary = "Ruby client for the Heka application logging and metrics gathering system"
|
22
|
+
|
23
|
+
if s.respond_to? :specification_version then
|
24
|
+
s.specification_version = 4
|
25
|
+
|
26
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
|
+
s.add_development_dependency(%q<minitest>, [">= 0"])
|
28
|
+
else
|
29
|
+
s.add_dependency(%q<minitest>, [">= 0"])
|
30
|
+
end
|
31
|
+
else
|
32
|
+
s.add_dependency(%q<minitest>, [">= 0"])
|
33
|
+
end
|
34
|
+
end
|
data/lib/heka.rb
ADDED
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: heka
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sasha Gerrand
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- !binary |-
|
12
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURvakNDQW9xZ0F3SUJB
|
13
|
+
Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJVTVJVd0V3WURWUVFEREF4eWRX
|
14
|
+
SjUKWjJWdGN5NXZjbWN4RXpBUkJnb0praWFKay9Jc1pBRVpGZ056YldjeEVq
|
15
|
+
QVFCZ29Ka2lhSmsvSXNaQUVaRmdKcApaREVTTUJBR0NnbVNKb21UOGl4a0FS
|
16
|
+
a1dBbUYxTUI0WERURXpNRFF6TURJeE1ETXdNbG9YRFRFME1EUXpNREl4Ck1E
|
17
|
+
TXdNbG93VkRFVk1CTUdBMVVFQXd3TWNuVmllV2RsYlhNdWIzSm5NUk13RVFZ
|
18
|
+
S0NaSW1pWlB5TEdRQkdSWUQKYzIxbk1SSXdFQVlLQ1pJbWlaUHlMR1FCR1JZ
|
19
|
+
Q2FXUXhFakFRQmdvSmtpYUprL0lzWkFFWkZnSmhkVENDQVNJdwpEUVlKS29a
|
20
|
+
SWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBS2FGdTdXYU83SnlHSUdx
|
21
|
+
WVBUN25BYUhXb2x3ClhmN1hzNUNEQWFrQ0UzanJwYjFkeUFFdkNaREtkeEsv
|
22
|
+
U0ZkT2FIZmR4eExlbUxPbnQreWZPekxrZ0htby94L1YKZVNTZTE1RzJGTHh0
|
23
|
+
NzZPZDNQUUtTbWNuLzZTVEt3RDV4MjNoeWMxOE9jS0VLbVludU0vSTZJWXl6
|
24
|
+
QjF6RW9TSgpjQXJxL3BQcDkwek9NelV3NHNRRDBtbGhtUGx5NzEzRW1iUDZ3
|
25
|
+
WjhwenIxQ1JQYk5BMHRHdS95emFyalVWL1d1Ci83MGFDa01haHpUdFF1Ukx4
|
26
|
+
elBRSlF5OGJNR3lyMVFJMng2eTFlUkJYb2o0V3NJR0ptdjZ1Q3ZOME1XVTN1
|
27
|
+
ZGYKMnRWSHBXZytHSVZQVnYrSHZiRjFiRzZIWm5KeTgxZENSTlZvVGlQRmcr
|
28
|
+
azIzVDQyZjVNK043SWR5U0VDQXdFQQpBYU4vTUgwd0NRWURWUjBUQkFJd0FE
|
29
|
+
QUxCZ05WSFE4RUJBTUNCTEF3SFFZRFZSME9CQllFRkhmUzR2Mm5tajBCCjNE
|
30
|
+
d0hmREs4eGlXS21Ga21NQ0VHQTFVZEVRUWFNQmlCRm5KMVlubG5aVzF6TG05
|
31
|
+
eVowQnpiV2N1YVdRdVlYVXcKSVFZRFZSMFNCQm93R0lFV2NuVmllV2RsYlhN
|
32
|
+
dWIzSm5RSE50Wnk1cFpDNWhkVEFOQmdrcWhraUc5dzBCQVFVRgpBQU9DQVFF
|
33
|
+
QW4waVcyM2Z0T3JLeUw4VGxNb1FNdHNSTHM0c25iNVRJYjY0c0d3WWRieDIw
|
34
|
+
S1hrdzB2Z05rSG9NCjVvdGxTeTl6Z0VUNzJPR1J1NmtEcU0xZnAxQUphbUda
|
35
|
+
cnA1VGRXSjZ4Q2wwTVc2d2cvQ2g0WUVoaTg5YmY2ak8KQXErdEc2T3ZBVXpB
|
36
|
+
dUZ5WlQ0SWF4SFVETkdiTzdSc01LM2toN2oyYitJbHhqVkNkbEloS2hrWG50
|
37
|
+
bk9QeXB1UwpMQzZYaWk5ZENXRVRKMHB3b0hXRFdHYjljYXpPNlBwa2twRmUr
|
38
|
+
aUxzVHF3Uk92aVRSN1g4cHhBK1NVVnN3TE5iCjF2WHpLMUlVdGZGaTJlMnB1
|
39
|
+
anRxSkxQSVJ6M0tPRTh3cFlYRmlVY21HU2tLUGQ5aW9vWGtWQmViempyMFdD
|
40
|
+
dGQKWmdURitFRVZHUWp6WUx6N1BCOUFzNVJyTlhIeEZnPT0KLS0tLS1FTkQg
|
41
|
+
Q0VSVElGSUNBVEUtLS0tLQo=
|
42
|
+
date: 2013-04-30 00:00:00.000000000 Z
|
43
|
+
dependencies:
|
44
|
+
- !ruby/object:Gem::Dependency
|
45
|
+
name: minitest
|
46
|
+
requirement: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
type: :development
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
description: Ruby client for the Heka application logging and metrics gathering system
|
59
|
+
email: rubygems-heka@sgerrand.com
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files:
|
63
|
+
- CHANGELOG
|
64
|
+
- LICENSE
|
65
|
+
- README.md
|
66
|
+
- lib/heka.rb
|
67
|
+
files:
|
68
|
+
- CHANGELOG
|
69
|
+
- LICENSE
|
70
|
+
- Manifest
|
71
|
+
- README.md
|
72
|
+
- Rakefile
|
73
|
+
- heka.gemspec
|
74
|
+
- lib/heka.rb
|
75
|
+
- test/helper.rb
|
76
|
+
homepage: https://github.com/sgerrand/heka-rb-gem
|
77
|
+
licenses: []
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options:
|
81
|
+
- --line-numbers
|
82
|
+
- --inline-source
|
83
|
+
- --title
|
84
|
+
- Heka
|
85
|
+
- --main
|
86
|
+
- README.md
|
87
|
+
require_paths:
|
88
|
+
- lib
|
89
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '1.2'
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project: heka
|
101
|
+
rubygems_version: 2.0.3
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: Ruby client for the Heka application logging and metrics gathering system
|
105
|
+
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|