Skip to content

Commit

Permalink
[Metricbeat] Add Oracle overview dashboard (#14021)
Browse files Browse the repository at this point in the history
  • Loading branch information
sayden authored Oct 18, 2019
1 parent de43181 commit 21f6136
Show file tree
Hide file tree
Showing 13 changed files with 1,546 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add `metrics_path` as known hint for autodiscovery {pull}13996[13996]
- Leverage KUBECONFIG when creating k8s client. {pull}13916[13916]
- Add ability to filter by tags for cloudwatch metricset. {pull}13758[13758] {issue}13145[13145]
- Add Oracle overview dashboard {pull}14021[14021]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24603,7 +24603,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

0 comments on commit 21f6136

Please sign in to comment.