-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathregistry.yaml
42 lines (42 loc) · 1.35 KB
/
registry.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
groups:
- id: registry.oracledb
type: attribute_group
display_name: Oracle Database Attributes
brief: >
This section defines attributes for Oracle Database.
attributes:
- id: oracledb.implicit_release
type: boolean
stability: development
brief: >
Boolean flag Indicating if the internal connection is released back to pool or not after executing a query.
examples: [true]
- id: oracledb.instance
type: string
stability: development
brief: The name of the Oracle Database instance.
examples: "ORCL1"
- id: oracledb.pdb_name
type: string
stability: development
brief: >
The name of the pluggable database (PDB) the connection is using.
examples: "PDB1"
- id: oracledb.pool.increment
type: int
stability: development
brief: >
The number of connections added when the pool needs to expand.
examples: 5
- id: oracledb.pool.max
type: int
stability: development
brief: >
The maximum number of connections that can be open in the pool.
examples: 30
- id: oracledb.pool.min
type: int
stability: development
brief: >
The minimum number of connections that the pool maintains.
examples: 10