Skip to content

Commit 197f022

Browse files
authored
Merge pull request prometheus-community#602 from dswarbrick/fix-postgres-spelling
Fix misspelling of PostgreSQL
2 parents 94efaa5 + be0ac2b commit 197f022

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ assignees: ''
3737
insert list of flags used here
3838
```
3939

40-
* PostgresSQL version:
40+
* PostgreSQL version:
4141

4242
insert PostgreSQL version here
4343

cmd/postgres_exporter/postgres_exporter.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,14 +576,14 @@ func (e *Exporter) setupInternalMetrics() {
576576
Namespace: namespace,
577577
Subsystem: exporter,
578578
Name: "last_scrape_duration_seconds",
579-
Help: "Duration of the last scrape of metrics from PostgresSQL.",
579+
Help: "Duration of the last scrape of metrics from PostgreSQL.",
580580
ConstLabels: e.constantLabels,
581581
})
582582
e.totalScrapes = prometheus.NewCounter(prometheus.CounterOpts{
583583
Namespace: namespace,
584584
Subsystem: exporter,
585585
Name: "scrapes_total",
586-
Help: "Total number of times PostgresSQL was scraped for metrics.",
586+
Help: "Total number of times PostgreSQL was scraped for metrics.",
587587
ConstLabels: e.constantLabels,
588588
})
589589
e.error = prometheus.NewGauge(prometheus.GaugeOpts{

0 commit comments

Comments
 (0)