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

Cherry-pick #14021 to 7.5: [Metricbeat] Add Oracle overview dashboard #14153

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24019,7 +24019,7 @@ type: keyword
*`oracle.performance.io_reloads`*::
+
--
Reloads / Pins ratio. A Reload is any PIN of an object that is not the first PIN performed since the object handle was created, and which requires loading the object from disk. Pins are tumber of times a PIN was requested for objects of this namespace
Reloads / Pins ratio. A Reload is any PIN of an object that is not the first PIN performed since the object handle was created, and which requires loading the object from disk. Pins are the number of times a PIN was requested for objects of this namespace

type: double

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions metricbeat/docs/modules/oracle.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ which is based on 5.0.13-arch1-1-ARCH Arch Linux. This is important, the module

OCI Instant Client is also required and the module has been tested by using version 18.5. See below for more information.

[float]
== Dashboard
An overview dashboard for Kibana is already included:

image::./images/metricbeat-oracle-overview.png[]

[float]

== Requirements
Expand Down Expand Up @@ -50,8 +56,8 @@ in <<configuration-metricbeat>>. Here is an example configuration:
----
metricbeat.modules:
- module: oracle
metricsets: ["tablespace"]
enabled: false
metricsets: ["tablespace", "performance"]
enabled: true
period: 10s
hosts: ["oracle://user:pass@localhost:1521/ORCLPDB1.localdomain?sysdba=1"]

Expand Down
4 changes: 2 additions & 2 deletions x-pack/metricbeat/metricbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ metricbeat.modules:

#-------------------------------- Oracle Module --------------------------------
- module: oracle
metricsets: ["tablespace"]
enabled: false
metricsets: ["tablespace", "performance"]
enabled: true
period: 10s
hosts: ["oracle://user:pass@localhost:1521/ORCLPDB1.localdomain?sysdba=1"]

Expand Down
4 changes: 2 additions & 2 deletions x-pack/metricbeat/module/oracle/_meta/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- module: oracle
metricsets: ["tablespace"]
enabled: false
metricsets: ["tablespace", "performance"]
enabled: true
period: 10s
hosts: ["oracle://user:pass@localhost:1521/ORCLPDB1.localdomain?sysdba=1"]

Expand Down
6 changes: 6 additions & 0 deletions x-pack/metricbeat/module/oracle/_meta/docs.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ which is based on 5.0.13-arch1-1-ARCH Arch Linux. This is important, the module

OCI Instant Client is also required and the module has been tested by using version 18.5. See below for more information.

[float]
== Dashboard
An overview dashboard for Kibana is already included:

image::./images/metricbeat-oracle-overview.png[]

[float]

== Requirements
Expand Down
Loading