-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add config spec * Use db template * Remove useless attribute * Add timeout unit
- Loading branch information
Showing
4 changed files
with
122 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: SAP HANA | ||
files: | ||
- name: sap_hana.yaml | ||
options: | ||
- template: init_config | ||
options: | ||
- template: init_config/db | ||
- template: init_config/default | ||
- template: instances | ||
options: | ||
- name: server | ||
description: The hostname used to connect to the system. | ||
required: true | ||
value: | ||
type: string | ||
- name: port | ||
description: The port used to connect to the system. | ||
value: | ||
type: integer | ||
default: 30015 | ||
- name: username | ||
description: The database user to authenticate as. | ||
required: true | ||
value: | ||
type: string | ||
- name: password | ||
description: The password of `username`. | ||
required: true | ||
value: | ||
type: string | ||
- name: use_hana_hostnames | ||
description: | | ||
Whether or not to use the hostnames contained in HANA's monitoring | ||
views instead of the Agent hostname. | ||
value: | ||
type: boolean | ||
example: false | ||
- name: batch_size | ||
description: The number of rows to return with each query result. | ||
value: | ||
type: integer | ||
default: 1000 | ||
- name: timeout | ||
description: The timeout in seconds for connecting to `server`. | ||
value: | ||
type: integer | ||
default: 10 | ||
- template: instances/db | ||
- template: instances/default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters