Skip to content

Releases: 3scale-ops/prometheus-exporter-operator

v0.8.1

09 May 16:17
9f732cf
Compare
Choose a tag to compare

What's Changed

  • fix/cross-namespace-dashboard-import by @roivaz in #52

Full Changelog: v0.8.0...v0.8.1

v0.8.0

22 Feb 15:25
1b5a9fe
Compare
Choose a tag to compare

What's Changed

  • Feat/Add manticore prometheus-exporter and stable release v0.8.0 by @slopezz in #51

Full Changelog: v0.7.0...v0.8.0

v0.7.0

06 Sep 10:52
a11944f
Compare
Choose a tag to compare

Features/Changes

  • Upgrade operator to manage different possible GrafanaDashboard apiVersions #49
    • New grafana-operator:v5 has added a breaking change by renaming the GrafanaDashboard custom resource apiVersion, and introducing a new required CRD field
    • This prometheus-exporter-operator:v0.7.0 release makes it optional to set the GrafanaDashboard apiVersion to use. Current default value, if not specified in the CR, is the old apiVersion v1alpha1, since not everybody might already upgraded its grafana-operator version to v5
    • In future releases of prometheus-exporter-operator , the default value will be updated to new apiVersion v1beta1
    • If for any reason you have already upgraded your grafana-operator version to v5, then you need to add to your CRs the new CRD field grafanaDashboard.apiVersion=v1beta1
apiVersion: monitoring.3scale.net/v1alpha1
kind: PrometheusExporter
metadata:
  name: example-memcached
spec:
  type: memcached
  grafanaDashboard:
    label:
      key: autodiscovery
      value: enabled
    apiVersion: v1beta1   ### This one
  dbHost: your-memcached-host
  dbPort: 11211

v0.6.2

30 Mar 09:25
0bd825b
Compare
Choose a tag to compare

Features/Changes

  • Increase default cpu limits for all exporters (except sendgrid) to avoid CPUThrottling #47
    • If for any reason you prefer to have lower cpu.limits although having CPU throttled, you can always overwrite default resources configuration, example:
apiVersion: monitoring.3scale.net/v1alpha1
kind: PrometheusExporter
metadata:
  name: elasticsearch
spec:
  type: es
  dbHost: https://elasticsearch.com
  dbPort: 443
  resources:
    requests:
      cpu: 25m
      memory: 64Mi
    limits:
      cpu: 200m
      memory: 128Mi

v0.6.1

25 Oct 10:37
4dc26d6
Compare
Choose a tag to compare

Features/Changes

  • Updated probe exporter with new default blackbox_exporter image (from 0.18.0 to 0.22.0) #41
    • It also offers the possibility to use new prometheus Probe instead of prometheus ServiceMonitor
    • Grafana Target Label selector before was harcoded to target which came from a required RelabellingConfig on every ServiceMonitor:
     relabelings:
     - sourceLabels: [__param_target]
       targetLabel: target
    
    • Now it is not needed, Probe already offers instance label by default, which has been configured as default value for the Grafana Target Label selector
    • For backward compatibility, you can keep using ServiceMonitor, but you will need to override this default value to use any other one like previous target value with the new PrometheusExporter CR field probeTargetLabel
  • Updated redis exporter with new default redis exporter image (from 1.3.5 to v1.44.0) #42
  • Upgrade operator-sdk from v1.13.1 to v1.24.0 #43

Bug Fixes

  • Fixed some redis grafana dashboard panels showing negative values #42
  • Fixed some memcached and postgres grafana dashboards panels showing negative values #44
  • Fixed resources low limits on controller-manager #46

v0.5.0

04 Aug 10:35
c23db78
Compare
Choose a tag to compare

Features/Changes

  • Add sendgrid_exporter to have available mailing statistics #37

v0.4.1

11 Apr 15:05
58ed1af
Compare
Choose a tag to compare

Features/Changes

  • Remove deprecated name field from grafana dashboard template #35

v0.4.0

28 Oct 10:10
f27dc15
Compare
Choose a tag to compare

Features/Changes

  • Upgraded operator-sdk from v1.5.0 to latest v1.13.1 #34
  • Updated default cloudwatch exporter image (from 0.8.0 to 0.11.0) #34

Bug Fixes

v0.3.4

23 Jul 15:12
23932d7
Compare
Choose a tag to compare

Features/Changes

  • Improve AWS Cloudwatch Elasticsearch monitoring by adding new metrics, updating grafana dashboard and providing new example prometheus rules #30

v0.3.3

07 Jun 12:50
81eaede
Compare
Choose a tag to compare

Features/Changes

  • Add support to probe-exporter to use optionally a Secret for blackbox modules config #29