Skip to content

Commit

Permalink
added endpoint for Nipype telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgorgo committed Oct 9, 2018
1 parent 573505b commit 1681925
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions dockereve-master/eve-app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,36 @@
'required': True
}
}

nipype_schema = {
'interface_class_name': {
'type': 'string',
'required': True
},
'version': {
'type': 'string',
'required': True
},
'mem_peak_gb': {
'type': 'float',
'required': True
},
'duration_sec': {
'type': 'float',
'required': True
},
'inputs': {
'type': 'dict',
'required': True
}
}

settings['DOMAIN']['nipype_telemetry'] = {
'type': 'dict',
'required': False,
'schema': deepcopy(nipype_schema)
}

settings['DOMAIN']['rating'] ={
'type': 'dict',
'required': False,
Expand Down

0 comments on commit 1681925

Please sign in to comment.