Skip to content

Commit

Permalink
[chore][receiver/oracledb] Add required permissions to README (#32389)
Browse files Browse the repository at this point in the history
**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
  • Loading branch information
crobert-1 committed Apr 16, 2024
1 parent 291dc04 commit e07b713
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
- `receiver/dockerstats`: Remove stable receiver.dockerstats.useScraperV2 feature gate. (#31999)
- `awsxrayexporter`: change x-ray exporter's translator to make "." split annotation pass as-is (#31732)
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
- `oracledbreceiver`: Fix incorrect values being set for oracledb.tablespace_size.limit and oracledb.tablespace_size.usage (#31451)
Please grant the `DBA_TABLESPACE_USAGE_METRICS` permission to the user connecting to the Oracle DB instance to ensure all enabled
metrics are properly ingested.

### 🚩 Deprecations 🚩

Expand Down Expand Up @@ -85,7 +88,6 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
- `jmxreceiver`: Fix memory leak during component shutdown (#32289)
- `k8sobjectsreceiver`: Fix memory leak caused by the pull mode's interval ticker (#31919)
- `kafkareceiver`: fix kafka receiver panic on shutdown (#31926)
- `oracledbreceiver`: Fix incorrect values being set for oracledb.tablespace_size.limit and oracledb.tablespace_size.usage (#31451)
- `prometheusreceiver`: Fix a bug where a new prometheus receiver with the same name cannot be created after the previous receiver is Shutdown (#32123)
- `resourcedetectionprocessor`: Only attempt to detect Kubernetes node resource attributes when they're enabled. (#31941)
- `syslogreceiver`: Fix issue where static resource and attributes were ignored (#31849)
Expand Down
1 change: 1 addition & 0 deletions receiver/oracledbreceiver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ GRANT SELECT ON V_$SYSSTAT TO <username>;
GRANT SELECT ON V_$RESOURCE_LIMIT TO <username>;
GRANT SELECT ON DBA_TABLESPACES TO <username>;
GRANT SELECT ON DBA_DATA_FILES TO <username>;
GRANT SELECT ON DBA_TABLESPACE_USAGE_METRICS TO <username>;
```

## Enabling metrics.
Expand Down

0 comments on commit e07b713

Please sign in to comment.