We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 322a979 + 04b792a commit 3650c04Copy full SHA for 3650c04
README.md
@@ -27,9 +27,9 @@ The following metrics are exposed currently.
27
- oracledb_wait_time_scheduler
28
- oracledb_wait_time_system_io
29
- oracledb_wait_time_user_io
30
-- oracle_tablespace_bytes
31
-- oracle_tablespace_max_bytes
32
-- oracle_tablespace_bytes_free
+- oracledb_tablespace_bytes
+- oracledb_tablespace_max_bytes
+- oracledb_tablespace_bytes_free
33
34
# Installation
35
main.go
@@ -345,17 +345,17 @@ ORDER BY
345
}
346
defer rows.Close()
347
tablespaceBytesDesc := prometheus.NewDesc(
348
- "oracle_tablespace_bytes",
+ prometheus.BuildFQName(namespace, "tablespace", "bytes"),
349
"Generic counter metric of tablespaces bytes in Oracle.",
350
[]string{"tablespace", "type"}, nil,
351
)
352
tablespaceMaxBytesDesc := prometheus.NewDesc(
353
- "oracle_tablespace_max_bytes",
+ prometheus.BuildFQName(namespace, "tablespace", "max_bytes"),
354
"Generic counter metric of tablespaces max bytes in Oracle.",
355
356
357
tablespaceFreeBytesDesc := prometheus.NewDesc(
358
- "oracle_tablespace_bytes_free",
+ prometheus.BuildFQName(namespace, "tablespace", "free"),
359
"Generic counter metric of tablespaces free bytes in Oracle.",
360
361
0 commit comments