-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
572e43a
commit 4831dec
Showing
12 changed files
with
264 additions
and
78 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
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 was deleted.
Oops, something went wrong.
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,28 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"$id": "http://schema.nethserver.org/loki/configure-module.json", | ||
"title": "Configure Cloud Log Manager Forwarder", | ||
"description": "Configure Cloud Log Manager Forwarder service.", | ||
"type": "object", | ||
"required": [ | ||
"active" | ||
], | ||
"properties": { | ||
"active": { | ||
"type": "boolean", | ||
"description": "Action condition to be set." | ||
}, | ||
"address": { | ||
"type": "string", | ||
"description": "Cloud log manager server address." | ||
}, | ||
"tenant": { | ||
"type": "string", | ||
"description": "Cloud log manager tenant." | ||
}, | ||
"start_time": { | ||
"type": "string", | ||
"description": "Log forwarding start time." | ||
} | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
imageroot/actions/set-syslog-forwarder/validate-input.json
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,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"$id": "http://schema.nethserver.org/loki/configure-module.json", | ||
"title": "Configure Syslog Forwarder", | ||
"description": "Configure Syslog Forwarder service.", | ||
"type": "object", | ||
"required": [ | ||
"active" | ||
], | ||
"properties": { | ||
"active": { | ||
"type": "boolean", | ||
"description": "Action condition to be set." | ||
}, | ||
"address": { | ||
"type": "string", | ||
"description": "Syslog server address." | ||
}, | ||
"port": { | ||
"type": "string", | ||
"description": "Syslog server port." | ||
}, | ||
"protocol": { | ||
"type": "string", | ||
"description": "Protocol to send datas." | ||
}, | ||
"format": { | ||
"type": "string", | ||
"description": "Log format." | ||
}, | ||
"start_time": { | ||
"type": "string", | ||
"description": "Log forwarding start time." | ||
} | ||
} | ||
} |
Oops, something went wrong.