mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-04 23:29:30 +00:00
Add warning if Postgres Version is lower then the minimum version.
This commit is contained in:
parent
e2b6c973a1
commit
4477dfa9b3
@ -881,6 +881,9 @@ func (e *Exporter) checkMapVersions(ch chan<- prometheus.Metric, db *sql.DB) err
|
||||
return errors.New(fmt.Sprintln("Error scanning version string:", err))
|
||||
}
|
||||
semanticVersion, err := parseVersion(versionString)
|
||||
if semanticVersion.LT(lowestSupportedVersion) {
|
||||
log.Warnln("PostgreSQL version is lower then our lowest supported version! Got", semanticVersion.String(), "minimum supported is", lowestSupportedVersion.String())
|
||||
}
|
||||
|
||||
// Check if semantic version changed and recalculate maps if needed.
|
||||
if semanticVersion.NE(e.lastMapVersion) || e.metricMap == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user