Skip to content

Commit

Permalink
Preparing for update to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnLZeller committed May 24, 2016
1 parent cbe3bcc commit 194b04d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changes
=======

# 0.5.0 / 05-24-2016
### Details
https://github.com/jenkinsci/datadog-plugin/compare/datadog-0.4.1...datadog-0.5.0

### Changes
* [IMPROVEMENT] Adding tags by job, via job configuration screen or via workspace text file. See [#38](https://github.com/DataDog/jenkins-datadog-plugin/pull/38) (Thanks @MadsNielsen)
* [IMPROVEMENT] Count metric for completed jobs. See [#39](https://github.com/DataDog/jenkins-datadog-plugin/pull/39) (Thanks @MadsNielsen)

# 0.4.1 / 12-08-2015
### Details
https://github.com/jenkinsci/datadog-plugin/compare/datadog-0.4.0...datadog-0.4.1
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ List of events:

List of metrics:
* Build duration, in seconds (jenkins.job.duration)
* Jobs completed (jenkins.job.completed) - _Requires the Datadog Agent_

List of service checks:
* Build status (jenkins.job.status)
Expand All @@ -21,11 +22,18 @@ All events, metrics, and service checks include the following tags, if they are
* result
* branch

These are optional tags that can be included in all events, metrics, and service checks, if enabled from the `Manage Jenkins -> Configure System` page (disabled by default):
* node
Optional tags, included in events, metrics, and service checks. (Toggle from `Manage Jenkins -> Configure System`)
* node (disabled by default)

## Customization
Currently we allow you the ability to blacklist any jobs which you do not want to have events, metrics, and service checks reported for.
From the global configuration page, at `Manage Jenkins -> Configure System`.
* Blacklisted Jobs
* A comma-separated list of job names that should not monitored. (eg: susans-job,johns-job,prod-release).

From a job specific configuration page
* Custom tags
* Added from a file in the job workspace, or
* Added as text directly from the configuration page

## Installation
_This plugin requires [Jenkins 1.580.1](http://updates.jenkins-ci.org/download/war/1.580.1/jenkins.war) or newer._
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>org.datadog.jenkins.plugins</groupId>
<artifactId>datadog</artifactId>
<version>0.4.1-SNAPSHOT</version>
<version>0.5.0-SNAPSHOT</version>
<packaging>hpi</packaging>

<name>Datadog Plugin</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -579,9 +579,9 @@ public String getBlacklist() {
}

/**
* Getter function for the optional tag {@link node} global configuration.
* Getter function for the optional tag {@link tagNode} global configuration.
*
* @return a Boolean containing optional tag value for the {@link node} global configuration.
* @return a Boolean containing optional tag value for the {@link tagNode} global configuration.
*/
public Boolean getTagNode() {
return tagNode;
Expand Down

0 comments on commit 194b04d

Please sign in to comment.