Skip to content

Commit 996c8dd

Browse files
Release changes for v2.1.0 (#376)
Signed-off-by: Anders Swanson <anders.swanson@oracle.com>
1 parent 568ee42 commit 996c8dd

35 files changed

+1871
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OS_TYPE ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
33
ARCH_TYPE ?= $(subst x86_64,amd64,$(patsubst i%86,386,$(ARCH)))
44
GOOS ?= $(shell go env GOOS)
55
GOARCH ?= $(shell go env GOARCH)
6-
VERSION ?= 2.0.4
6+
VERSION ?= 2.1.0
77
LDFLAGS := -X main.Version=$(VERSION)
88
GOFLAGS := -ldflags "$(LDFLAGS) -s -w"
99
BUILD_ARGS = --build-arg VERSION=$(VERSION)

docker-compose/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ services:
5959
start_period: 30s
6060

6161
exporter:
62-
image: container-registry.oracle.com/database/observability-exporter:2.0.4
62+
image: container-registry.oracle.com/database/observability-exporter:2.1.0
6363
container_name: exporter
6464
command:
6565
- '--config.file=/exporter/config.yaml'

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/BurntSushi/toml v1.5.0
99
github.com/alecthomas/kingpin/v2 v2.4.0
1010
github.com/godror/godror v0.49.3
11-
github.com/oracle/oci-go-sdk/v65 v65.100.1
11+
github.com/oracle/oci-go-sdk/v65 v65.101.0
1212
github.com/prometheus/client_golang v1.23.2
1313
github.com/prometheus/common v0.66.1
1414
github.com/prometheus/exporter-toolkit v0.14.1

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ github.com/oracle/oci-go-sdk/v65 v65.99.2 h1:W1HzD28r+xqqT57FpH7ymOFE3BM/p4J/Ia1
140140
github.com/oracle/oci-go-sdk/v65 v65.99.2/go.mod h1:RGiXfpDDmRRlLtqlStTzeBjjdUNXyqm3KXKyLCm3A/Q=
141141
github.com/oracle/oci-go-sdk/v65 v65.100.1 h1:5Bj+O14s1GoyGfS3GCTP0jSfDTg7OjpOMaiC3jwdenQ=
142142
github.com/oracle/oci-go-sdk/v65 v65.100.1/go.mod h1:RGiXfpDDmRRlLtqlStTzeBjjdUNXyqm3KXKyLCm3A/Q=
143+
github.com/oracle/oci-go-sdk/v65 v65.101.0 h1:EErMOuw98JXi0P7DgPg5zjouCA5s61iWD5tFWNCVLHk=
144+
github.com/oracle/oci-go-sdk/v65 v65.101.0/go.mod h1:RGiXfpDDmRRlLtqlStTzeBjjdUNXyqm3KXKyLCm3A/Q=
143145
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
144146
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU=
145147
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

site/docs/configuration/config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ An individual metric may have its own scrape interval separate from the exporter
111111
To add your custom config file to a container image, you can layer the base exporter image and include that config:
112112
113113
```Dockerfile
114-
FROM container-registry.oracle.com/database/observability-exporter:2.0.3
114+
FROM container-registry.oracle.com/database/observability-exporter:2.1.0
115115
COPY my-exporter-config.yaml /
116116
ENTRYPOINT ["/oracledb_exporter", "--config.file", "/my-exporter-config.yaml"]
117117
```

site/docs/configuration/custom-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ The default metrics are provided in YAML format as an example. See [default-metr
187187
If you run the exporter as a container image and want to include your custom metrics in the image itself, you can use the following example `Dockerfile` to create a new image:
188188

189189
```Dockerfile
190-
FROM container-registry.oracle.com/database/observability-exporter:2.0.3
190+
FROM container-registry.oracle.com/database/observability-exporter:2.1.0
191191
COPY custom-metrics.toml /
192192
ENTRYPOINT ["/oracledb_exporter", "--custom.metrics", "/custom-metrics.toml"]
193193
```

site/docs/configuration/oracle-wallet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ docker run -it --rm \
3232
-e DB_CONNECT_STRING=devdb_tp \
3333
-v ./wallet:/wallet \
3434
-p 9161:9161 \
35-
container-registry.oracle.com/database/observability-exporter:2.0.3
35+
container-registry.oracle.com/database/observability-exporter:2.1.0
3636
```
3737

3838
### mTLS for multiple databases with Oracle Wallet

site/docs/getting-started/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ docker run -it --rm \
7272
-e DB_PASSWORD=Welcome12345 \
7373
-e DB_CONNECT_STRING=free23ai:1521/freepdb \
7474
-p 9161:9161 \
75-
container-registry.oracle.com/database/observability-exporter:2.0.3
75+
container-registry.oracle.com/database/observability-exporter:2.1.0
7676
```
7777

7878
## Standalone Binary

site/docs/releases/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ List of upcoming and historic changes to the exporter.
1111

1212
Our current priorities to support metrics for advanced database features and use cases, like Exadata, GoldenGate, and views included in the Oracle Diagnostics Pack.
1313

14+
### Version 2.1.0, September 29, 2025
15+
1416
- Updated project dependencies.
1517
- Standardize multi-arch builds and document supported database versions.
1618
- The metrics override capability is extended, allowing users to redefine individual existing metrics in custom metrics files. This allows users to modify individual default metrics without wholly replacing the default metrics file.

site/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const config: Config = {
7272
},
7373
{
7474
type: 'docsVersionDropdown',
75-
versions: ['current', '2.0.4', '2.0.3' ]
75+
versions: ['current', '2.1.0', '2.0.4', '2.0.3' ]
7676
},
7777
{
7878
href: 'https://github.com/oracle/oracle-db-appdev-monitoring',

0 commit comments

Comments
 (0)