Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tan9/was_exporter
A customized Prometheus jmx_exporter for WebSphere powered by VisualWAS.
https://github.com/tan9/was_exporter
jmx-exporter prometheus prometheus-exporter websphere
Last synced: 6 days ago
JSON representation
A customized Prometheus jmx_exporter for WebSphere powered by VisualWAS.
- Host: GitHub
- URL: https://github.com/tan9/was_exporter
- Owner: tan9
- License: lgpl-3.0
- Created: 2021-09-07T03:06:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-07T14:52:26.000Z (over 3 years ago)
- Last Synced: 2024-12-09T18:44:28.103Z (14 days ago)
- Topics: jmx-exporter, prometheus, prometheus-exporter, websphere
- Language: Java
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# JMX Exporter for WebSphere AS
A customized [JMX Exporter](https://github.com/prometheus/jmx_exporter) for exporting metrics from
WebSphere Application Server by using [ViualWAS](https://github.com/veithen/visualwas) connector.## Usage
You have to install VisualWAS WebSphere plugin as described [here](https://github.com/veithen/visualwas#websphere-plugin-installation).
Write your own jmx_exporter configuration file:
```yaml
# Using protocol provided by the VisualWAS project
jmxUrl: service:jmx:soap://localhost:8880
ssl: false
lowercaseOutputName: false
lowercaseOutputLabelNames: false
```And then run this application as a normal standalone `jmx_exporter`:
```shell
# Listen on 8080 port and using the specified jmx_exporter configuration
java -jar was_exporter-0.0.1-SNAPSHOT.jar 8080 config.yaml
```