File tree 4 files changed +6
-5
lines changed
src/main/java/org/opensearch/rest/prometheus
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,11 @@ It collects all relevant metrics and makes them available to Prometheus via the
28
28
| 1.0.0 | 1.0.0 | Jun 24, 2021 |
29
29
| 1.1.0 | 1.1.0 | Oct 08, 2021 |
30
30
| 1.2.0 | 1.2.0 | Nov 27, 2021 |
31
+ | 1.2.2 | 1.2.2 | Dec 19, 2021 |
31
32
32
33
## Install
33
34
34
- ` ./bin/opensearch-plugin install -b https://github.com/aparo/opensearch-prometheus-exporter/releases/download/1.0.0 /prometheus-exporter-1.0.0 .zip `
35
+ ` ./bin/opensearch-plugin install -b https://github.com/aparo/opensearch-prometheus-exporter/releases/download/1.2.2 /prometheus-exporter-1.2.2 .zip `
35
36
36
37
** Do not forget to restart the node after the installation!**
37
38
Original file line number Diff line number Diff line change 67
67
versions = [
68
68
" opensearch" : es_version,
69
69
" prometheus" : " 0.8.0" ,
70
- " log4j" : " 2.11.1 " ,
70
+ " log4j" : " 2.16.0 " ,
71
71
" junit" : " 4.12"
72
72
]
73
73
}
Original file line number Diff line number Diff line change 1
1
group = org.opensearch.plugin.prometheus
2
2
3
- version = 1.2.0
3
+ version = 1.2.2
4
4
5
5
pluginName = prometheus-exporter
6
6
pluginClassname = org.opensearch.plugin.prometheus.PrometheusExporterPlugin
Original file line number Diff line number Diff line change 34
34
import org .opensearch .rest .*;
35
35
import org .opensearch .rest .action .RestResponseListener ;
36
36
37
+ import static java .util .Arrays .asList ;
37
38
import java .util .List ;
39
+ import static java .util .Collections .unmodifiableList ;
38
40
import java .util .Locale ;
39
41
40
- import static java .util .Arrays .asList ;
41
- import static java .util .Collections .unmodifiableList ;
42
42
43
43
/**
44
44
* REST action class for Prometheus Exporter plugin.
You can’t perform that action at this time.
0 commit comments