Daniel Jaglowski 40b485f08a Update core for v0.90.0 release (#29539) | пре 1 година | |
---|---|---|
.. | ||
internal | пре 1 година | |
testdata | пре 1 година | |
Makefile | пре 2 година | |
README.md | пре 1 година | |
config.go | пре 1 година | |
config_test.go | пре 1 година | |
db_client.go | пре 1 година | |
doc.go | пре 1 година | |
documentation.md | пре 1 година | |
factory.go | пре 1 година | |
factory_test.go | пре 1 година | |
fake_db_client.go | пре 1 година | |
go.mod | пре 1 година | |
go.sum | пре 1 година | |
metadata.yaml | пре 1 година | |
scraper.go | пре 1 година | |
scraper_test.go | пре 1 година |
Status | |
---|---|
Stability | alpha: metrics |
Distributions | contrib, splunk |
Issues | |
Code Owners | @dmitryax, @crobert-1, @atoulme |
This receiver collects metrics from an Oracle Database.
The receiver connects to a database host and performs periodically queries.
To use the OracleDB receiver you must define how to connect to your DB. This can be done in two ways, defined in the Primary and Secondary configuration option sections. Defining one of the two configurations is required. If both are defined, the primary option will be used.
Required options:
datasource
: Oracle database connection string. Special characters must be encoded. Refer to Oracle Go Driver go_ora documentation for full connection string options.Example:
receivers:
oracledb:
datasource: "oracle://otel:password@localhost:51521/XE"
Required options:
endpoint
: Endpoint used to connect to the OracleDB server. Must be in the format of host:port
password
: Password for the OracleDB connection. Special characters are allowed.service
: OracleDB Service that the receiver should connect to.username
: Username for the OracleDB connection.Example:
receivers:
oracledb:
endpoint: localhost:51521
password: p@sswo%d
service: XE
username: otel
Depending on which metrics you collect, you will need to assign those permissions to the database user:
GRANT SELECT ON V_$SESSION TO <username>;
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>;
See documentation.
You can enable or disable selective metrics.
Example:
receivers:
oracledb:
datasource: "oracle://otel:password@localhost:51521/XE"
metrics:
oracledb.query.cpu_time:
enabled: false
oracledb.query.physical_read_requests:
enabled: true