comparison Resources/Configuration.json @ 511:3b735fdf320b

monitoring of stable patients/studies/series
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Aug 2013 15:39:53 +0200
parents bdbde1fbfab3
children 1b2cdc855bd3
comparison
equal deleted inserted replaced
509:e7841864c97c 511:3b735fdf320b
30 30
31 // List of paths to the custom Lua scripts to load into this 31 // List of paths to the custom Lua scripts to load into this
32 // instance of Orthanc 32 // instance of Orthanc
33 "LuaScripts" : [ 33 "LuaScripts" : [
34 ], 34 ],
35
36 // Dictionary of symbolic names for the user-defined metadata. Each
37 // entry must map a number between 1024 and 65535 to an unique
38 // string.
39 "UserMetadata" : {
40 // "Sample" : 1024
41 },
42 35
43 36
44 37
45 /** 38 /**
46 * Configuration of the HTTP server 39 * Configuration of the HTTP server
112 * followed by the username/password pair (if the password 105 * followed by the username/password pair (if the password
113 * protection is enabled on the peer). 106 * protection is enabled on the peer).
114 **/ 107 **/
115 // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ] 108 // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ]
116 // "peer2" : [ "http://localhost:8044/" ] 109 // "peer2" : [ "http://localhost:8044/" ]
117 } 110 },
111
112
113
114 /**
115 * Advanced options
116 **/
117
118 // Dictionary of symbolic names for the user-defined metadata. Each
119 // entry must map a number between 1024 and 65535 to an unique
120 // string.
121 "UserMetadata" : {
122 // "Sample" : 1024
123 },
124
125 // Number of seconds without receiving any instance before a
126 // patient, a study or a series is considered as stable.
127 "StableAge" : 60
118 } 128 }