Skip to content

Commit 033d4ba

Browse files
committed
Prep for 0.6.0 release
1 parent 8e9ca44 commit 033d4ba

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,5 @@ Full details of available Prometheus options are at: https://prometheus.io/docs/
202202
## Known Limitations
203203
204204
- Only Linux on x86_64 is tested for now
205-
- Validation of configuration is non-existent -- incorrect configuration will not work with little indication as to why
206-
- Proper logging of the input execution is not yet implemented. You may or may get a log entry of any issues currently.
207-
- Only some basic HTTP options are supported: no support for Authorization or anything beyond basic TLS options at this time
205+
- Validation of configuration is not very advanced -- incorrect configuration will not work with little indication as to why
206+
- Only some basic HTTP options are supported, which should be fine for basic Prometheus endpoints but may not work with various proxying methods etc.

modinput_prometheus/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Splunk Modular Input for Prometheus
22

3-
A modular input which allows you to gather metrics from Promtheus servers and exporters.
3+
A modular input which allows you to gather metrics from Promtheus servers and exporters, either through polling or acting as a remote write target.
44

5-
Please see full documentation at: https://github.com/ltmon/splunk_modinput_prometheus
5+
For full documentation see: https://github.com/lukemonahan/splunk_modinput_prometheus

modinput_prometheus/default/app.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ label = Prometheus Metrics for Splunk
88
[launcher]
99
author=Luke Monahan <lukemonahan@gmail.com>
1010
description=This is a modular input that enables Prometheus servers to remote-write to Splunk, creating Splunk metrics, and for Splunk to poll a Prometheus exporter or federate server in order to scrape metrics.
11-
version=0.5.0
11+
version=0.6.0
1212

1313
[package]
1414
id = modinput_prometheus

modinput_prometheus/default/transforms.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[prometheus_metric_name_value]
22
REGEX = ^([^\s{]+)({[^}]+})? ([\d\.\-]+)
3-
FORMAT = metric_name::$1 _value::$3
3+
FORMAT = metric_name::$1 ::$2 _value::$3
44
WRITE_META = true
55

66
[prometheus_metric_dims]

0 commit comments

Comments
 (0)