Skip to content

Commit 80389e6

Browse files
committed
2 parents 7fd3945 + 195b31a commit 80389e6

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: java
2+

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Graylog HTTP Monitor Input Plugin
22

3+
[![Build Status](https://travis-ci.org/sivasamyk/graylog2-plugin-input-httpmonitor.svg?branch=master)](https://travis-ci.org/sivasamyk/graylog2-plugin-input-httpmonitor)
4+
35
An input monitor plugin for monitoring HTTP URLs (websites and REST APIs).
46
Works by periodically polling the URLs and recording the responses as messages.
57

@@ -15,7 +17,7 @@ This plugin provides support for monitoring following parameters
1517

1618
Getting started
1719
---------------
18-
For Graylog v2.0 and above download this [jar] (https://github.com/sivasamyk/graylog2-plugin-input-httpmonitor/releases/download/v1.0.3/graylog2-plugin-input-httpmonitor-1.0.3.jar)
20+
For Graylog v2.0 and above download this [jar] (https://github.com/sivasamyk/graylog2-plugin-input-httpmonitor/releases/download/v1.0.4/graylog2-plugin-input-httpmonitor-1.0.4.jar)
1921
(Please note this version will break (due to changes in graylog field naming restrictions) HTTP monitor dashboard created in older versions)
2022

2123
For Graylog v1.2 and above download this [jar] (https://github.com/sivasamyk/graylog2-plugin-input-httpmonitor/releases/download/v1.0.2/graylog2-plugin-input-httpmonitor-1.0.2.jar)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.graylog2</groupId>
88
<artifactId>graylog2-plugin-input-httpmonitor</artifactId>
9-
<version>1.0.3</version>
9+
<version>1.0.4</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.ning</groupId>
3333
<artifactId>async-http-client</artifactId>
34-
<version>1.9.29</version>
34+
<version>1.9.40</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.graylog2</groupId>

src/main/java/org/graylog2/plugin/httpmonitor/HttpMonitorInputMetaData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public URI getURL() {
3434

3535
@Override
3636
public Version getVersion() {
37-
return new Version(1, 0, 2);
37+
return new Version(1, 0, 4);
3838
}
3939

4040
@Override
@@ -44,7 +44,7 @@ public String getDescription() {
4444

4545
@Override
4646
public Version getRequiredVersion() {
47-
return new Version(1, 2, 0);
47+
return new Version(2, 0, 0);
4848
}
4949

5050
@Override

0 commit comments

Comments
 (0)