-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include log_level as key in template (#762)
Add possibility for the user to override the the log_level either as a CLI option to gordo-components or as a key under globals runtime in the config file.
- Loading branch information
Einar Martin Egeland Johnsen
authored
Jan 8, 2020
1 parent
11c5204
commit 468d81e
Showing
6 changed files
with
117 additions
and
9 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 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
28 changes: 28 additions & 0 deletions
28
tests/gordo_components/workflow/test_workflow_generator/data/config-test-with-log-key.yml
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 @@ | ||
machines: | ||
|
||
- name: ct-23-0001 #1st machine | ||
dataset: | ||
tags: #list of tags for 1st machine | ||
- GRA-TE -23-0733.PV | ||
- GRA-TT -23-0719.PV | ||
train_start_date: 2016-11-07T09:11:30+01:00 | ||
train_end_date: 2018-09-15T03:01:00+01:00 | ||
|
||
- name: ct-23-0002 #2nd machine | ||
dataset: | ||
tags: #list of tags for 2nd machine | ||
- CT/1 | ||
- CT/2 | ||
- CT/3 | ||
train_start_date: 2016-11-07T09:11:30+01:00 | ||
train_end_date: 2018-09-15T03:01:00+01:00 | ||
|
||
globals: | ||
model: | ||
sklearn.pipeline.Pipeline: | ||
steps: | ||
- sklearn.preprocessing.data.MinMaxScaler | ||
- gordo_components.machine.model.models.KerasAutoEncoder: | ||
kind: feedforward_hourglass | ||
runtime: | ||
log_level: debug |
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