8000 Release 1.9.0 Β· coroot/coroot Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

1.9.0

Compare
Choose a tag to compare
@apetruhin apetruhin released this 18 Mar 13:25
· 144 commits to main since this release
db71744

Infrastructure as Code (IaC) approach for database monitoring using pod annotations.

Coroot can now automatically discover and collect metrics from database instances (pods) annotated with coroot.com/*-scrape annotations.
For example, to enable Postgres-specific metrics collection from a CloudNativePG database, configure the Cluster with the following annotations:

apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
  name: cnpg-example
spec:
  instances: 2
  inheritedMetadata:
    annotations:
      coroot.com/postgres-scrape: "true"
      coroot.com/postgres-scrape-credentials-secret-name: cnpg-app
      coroot.com/postgres-scrape-credentials-secret-username-key: username
      coroot.com/postgres-scrape-credentials-secret-password-key: password

More info: https://docs.coroot.com/databases

Full Changelog: v1.8.12...v1.9.0

0