telltale 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +33 -0
- data/VERSION +1 -1
- data/lib/telltale.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3f430fa5cc97024ccd48df79272a985e7ac38c0
|
4
|
+
data.tar.gz: 6f4f841816fd08dbfc41686c4cce8a259178a85a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14829cad71505623efd5689258094d6129e532d4318c387729787e077d9a828c4312e065a781e63587f72ac6522bb47639dd42c9c7520c93a5730b745678e4ea
|
7
|
+
data.tar.gz: 3ee53c67ee0dcba82576ce5ce35c38c184989e54948c9ce029bdc4e5e5c4506e695ff50c214b67c0de643bc8f19f8bd441ca7193cf5fe4477c8b43fbf6609516
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
Report Rails application metrics to OpenTSDB.
|
4
4
|
|
5
|
+
## Instructions
|
6
|
+
|
7
|
+
Add the following line to your `Gemfile` and run `bundle install`.
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'telltale'
|
11
|
+
```
|
12
|
+
|
13
|
+
Then set the environment variables and run your rails app:
|
14
|
+
|
15
|
+
```sh
|
16
|
+
TELLTALE_OPENTSDB_HOST=metrics.domain.com bundle exec rails s
|
17
|
+
```
|
18
|
+
|
19
|
+
It is recommended to use something like [dotenv](https://rubygems.org/gems/dotenv) to manage your app's
|
20
|
+
environment variables.
|
21
|
+
|
5
22
|
## Metrics
|
6
23
|
|
7
24
|
These numbers are currently reported:
|
@@ -28,3 +45,19 @@ Telltale uses the following environment variables for configuration:
|
|
28
45
|
* `TELLTALE_OPENTSDB_HOST`: The host to report to
|
29
46
|
* `TELLTALE_OPENTSDB_PORT`: The port opentsdb listens on. Default is 4242
|
30
47
|
* `TELLTALE_PREFIX`: Some prefix for the metric name. Default is `telltale`
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
1. Fork it
|
52
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
53
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
54
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
55
|
+
5. Create new Pull Request
|
56
|
+
|
57
|
+
## About
|
58
|
+
|
59
|
+
This Gem is maintained and funded by nine.ch.
|
60
|
+
|
61
|
+
![nine.ch](https://blog.nine.ch/assets/logo.png)
|
62
|
+
|
63
|
+
We run your Linux server infrastructure – without interruptions, around the clock
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/telltale.rb
CHANGED