Machine Qualification Preconfigs¶
Machine qualification preconfigs should be put in
<autotest_dir>/new_tko/tko/preconfigs/qual/
The parameters are:
- globalFilter[i][db]: Database column name for the ithglobal filter (start at 0). See GraphingDatabaseFields.
- globalFilter[i][condition]: Condition field for the ith global filter (start at 0).
- globalFilter_all: This controls if you have “all of” or “any of”
selected as the filter combination operation for the global filters.
Set to
truefor “all of”, andfalsefor “any of”. - testFilter[j][db]: Database column name for the jthtest set filter (start at 0). See GraphingDatabaseFields.
- testFilter[j][condition]: Condition field for the jthtest set filter (start at 0).
- testFilter_all: This controls if you have “all of” or “any of”
selected as the filter combination operation for the test set
filters. Set to
truefor “all of”, andfalsefor “any of”. - interval: Sizes of the bins in the histogram.
Example:
globalFilter[0][db]: hostname
globalFilter[0][condition]: LIKE 'my_host_names%'
globalFilter[1][db]: hostname
globalFilter[1][condition]: LIKE 'my_other_host_names%'
globalFilter_all: false
testFilter[0][db]: test_name
testFilter[0][condition]: = 'my_test_name'
testFilter_all: true
interval: 10