Skip to content

Commit

Permalink
Add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrille-leclerc committed Jan 6, 2016
1 parent 5b7364e commit 4d6d019
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: java
sudo: false
jdk:
- oraclejdk8
- openjdk7
cache:
directories:
- '$HOME/.m2/repository'
branches:
except:
- gh-pages
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Jmxtrans Agent

[![Build Status](https://travis-ci.org/jmxtrans/jmxtrans-agent.svg?branch=master)](https://travis-ci.org/jmxtrans/jmxtrans-agent)

## What is jmxtrans-agent ?

Expand Down Expand Up @@ -159,7 +160,6 @@ OutputWriters are very simple to develop, you just have to extend [AbstractOutpu
Out of the box output writers

* [GraphitePlainTextTcpOutputWriter](https://github.com/jmxtrans/jmxtrans-agent/blob/master/src/main/java/org/jmxtrans/agent/GraphitePlainTextTcpOutputWriter.java): output to Graphite Carbon plain text protocol on TCP. Configuration parameters:
* `enabled`: to enable/disable the output writer. Optional, default value `true`
* `host`: Graphite Carbon listener host
* `port`: Graphite Carbon Plain Text TCP listener port. Optional, default value `2003`
* `namePrefix`; prefix of the metric name. Optional, default values `servers.#hostname#.` where `#hostname#` is the auto discovered hostname of computer with `.` escaped as `_` (`InetAddress.getLocalHost().getHostName()`).
Expand Down

0 comments on commit 4d6d019

Please sign in to comment.