Skip to content

Commit e07b713

Browse files
authored
[chore][receiver/oracledb] Add required permissions to README (#32389)
**Description:** An additional permission is now required in some cases of running the Oracle DB receiver, as a result of #32028. We should document it in the README. I also upgraded this change to a breaking change to make it clear to users that new permissions are needed. **Link to tracking Issue:** Resolves #32373
1 parent 291dc04 commit e07b713

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
3434
- `receiver/dockerstats`: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)
3535
- `awsxrayexporter`: change x-ray exporter's translator to make "." split annotation pass as-is (#31732)
3636
In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray export to translates it to “_” before sending traces to X-Ray Service. | To match otel naming style, x-ray service team decide to change their service to support both "." type and "" type of naming. In this case the translator that translate "." to "" is no-longer needed. This PR change the way this translator work | X-Ray PMs agree on rolling out this change by using feature-gate
37+
- `oracledbreceiver`: Fix incorrect values being set for oracledb.tablespace_size.limit and oracledb.tablespace_size.usage (#31451)
38+
Please grant the `DBA_TABLESPACE_USAGE_METRICS` permission to the user connecting to the Oracle DB instance to ensure all enabled
39+
metrics are properly ingested.
3740

3841
### 🚩 Deprecations 🚩
3942

@@ -85,7 +88,6 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
8588
- `jmxreceiver`: Fix memory leak during component shutdown (#32289)
8689
- `k8sobjectsreceiver`: Fix memory leak caused by the pull mode's interval ticker (#31919)
8790
- `kafkareceiver`: fix kafka receiver panic on shutdown (#31926)
88-
- `oracledbreceiver`: Fix incorrect values being set for oracledb.tablespace_size.limit and oracledb.tablespace_size.usage (#31451)
8991
- `prometheusreceiver`: Fix a bug where a new prometheus receiver with the same name cannot be created after the previous receiver is Shutdown (#32123)
9092
- `resourcedetectionprocessor`: Only attempt to detect Kubernetes node resource attributes when they're enabled. (#31941)
9193
- `syslogreceiver`: Fix issue where static resource and attributes were ignored (#31849)

receiver/oracledbreceiver/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ GRANT SELECT ON V_$SYSSTAT TO <username>;
6363
GRANT SELECT ON V_$RESOURCE_LIMIT TO <username>;
6464
GRANT SELECT ON DBA_TABLESPACES TO <username>;
6565
GRANT SELECT ON DBA_DATA_FILES TO <username>;
66+
GRANT SELECT ON DBA_TABLESPACE_USAGE_METRICS TO <username>;
6667
```
6768

6869
## Enabling metrics.

0 commit comments

Comments
 (0)