Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Metricbeat] Update doc in tablespace metricset in the Oracle module to include required permissions #14497

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion x-pack/metricbeat/module/oracle/tablespace/_meta/docs.asciidoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
`tablespace` Metricset includes information about data files and temp files, grouped by Tablespace with free space available, used space, status of the data files, status of the Tablespace, etc. The total set of fields available on the Metricset and their description are the following:
`tablespace` Metricset includes information about data files and temp files, grouped by Tablespace with free space available, used space, status of the data files, status of the Tablespace, etc.

=== Required database access
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[float] is missing over this line


To ensure that the module has access to the appropriate metrics, the module requires that you configure a user with access to the following tables:

* SYS.DBA_TEMP_FILES
* DBA_TEMP_FREE_SPACE
* dba_data_files
* dba_free_space

[float]
=== Description of fields

* *data_file.id*: Tablespace data file unique identifier number. Each data file of a Tablespace has a unique name (and each Tablespace may have more than one data file) but this is not the Tablespace ID.
* *data_file.name*: Filename of the data file (with the full path)
Expand Down