ajax.js 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var App = require('app');
  19. /**
  20. * Config for each ajax-request
  21. *
  22. * Fields example:
  23. * mock - testMode url
  24. * real - real url (without API prefix)
  25. * type - request type (also may be defined in the format method)
  26. * format - function for processing ajax params after default formatRequest. May be called with one or two parameters (data, opt). Return ajax-params object
  27. * testInProduction - can this request be executed on production tests (used only in tests)
  28. *
  29. * @type {Object}
  30. */
  31. var urls = {
  32. 'alerts.get_by_service': {
  33. 'real': '/clusters/{clusterName}/services/{serviceName}?fields=alerts',
  34. 'mock': '/data/alerts/HDP2/service_alerts.json'
  35. },
  36. 'alerts.get_by_host': {
  37. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=alerts',
  38. 'mock': '/data/alerts/HDP2/host_alerts.json'
  39. },
  40. 'background_operations.get_most_recent': {
  41. 'real': '/clusters/{clusterName}/requests?to=end&page_size=10&fields=Requests',
  42. 'mock': '/data/background_operations/list_on_start.json',
  43. 'testInProduction': true
  44. },
  45. 'background_operations.get_by_request': {
  46. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=*,tasks/Tasks/command,tasks/Tasks/command_detail,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/exit_code,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true',
  47. 'mock': '/data/background_operations/task_by_request{requestId}.json',
  48. 'testInProduction': true,
  49. 'format': function (data) {
  50. return {
  51. async: !data.sync
  52. };
  53. }
  54. },
  55. 'background_operations.get_by_task': {
  56. 'real': '/clusters/{clusterName}/requests/{requestId}/tasks/{taskId}',
  57. 'mock': '/data/background_operations/list_on_start.json',
  58. 'testInProduction': true,
  59. 'format': function (data) {
  60. return {
  61. async: !data.sync
  62. };
  63. }
  64. },
  65. 'service.item.start_stop': {
  66. 'real': '/clusters/{clusterName}/services/{serviceName}',
  67. 'mock': '/data/wizard/deploy/poll_1.json',
  68. 'format': function (data) {
  69. return {
  70. type: 'PUT',
  71. data: JSON.stringify({
  72. RequestInfo: {
  73. "context": data.requestInfo,
  74. "operation_level": {
  75. "level": "SERVICE",
  76. "cluster_name" : data.clusterName,
  77. "service_name" : data.serviceName
  78. }
  79. },
  80. Body: {
  81. ServiceInfo: {
  82. state: data.state
  83. }
  84. }
  85. })
  86. };
  87. }
  88. },
  89. 'service.item.smoke': {
  90. 'real': '/clusters/{clusterName}/requests',
  91. 'mock': '/data/wizard/deploy/poll_1.json',
  92. 'format': function (data) {
  93. return {
  94. 'type': 'POST',
  95. data: JSON.stringify({
  96. "RequestInfo": {
  97. "context": data.displayName + " Service Check",
  98. "command" : data.actionName
  99. },
  100. "Requests/resource_filters": [{"service_name" : data.serviceName}]
  101. })
  102. };
  103. }
  104. },
  105. 'service.item.passive': {
  106. 'real': '/clusters/{clusterName}/services/{serviceName}',
  107. 'mock': '',
  108. 'format': function (data) {
  109. return {
  110. type: 'PUT',
  111. data: JSON.stringify({
  112. RequestInfo: {
  113. "context": data.requestInfo
  114. },
  115. Body: {
  116. ServiceInfo: {
  117. maintenance_state: data.passive_state
  118. }
  119. }
  120. })
  121. };
  122. }
  123. },
  124. 'service.stale_host_components.start_stop': {
  125. 'real': '/clusters/{clusterName}/host_components?' +
  126. 'HostRoles/stale_configs=true&HostRoles/component_name.in({componentNames})',
  127. 'mock': '/data/wizard/deploy/poll_1.json',
  128. 'format': function (data) {
  129. return {
  130. type: 'PUT',
  131. data: JSON.stringify({
  132. RequestInfo: {
  133. "context": data.requestInfo
  134. },
  135. Body: {
  136. HostRoles: {
  137. state: data.state
  138. }
  139. }
  140. })
  141. };
  142. }
  143. },
  144. 'service.load_config_groups': {
  145. 'real': '/clusters/{clusterName}/config_groups?ConfigGroup/tag={serviceName}&fields=*',
  146. 'mock': '/data/configurations/config_group.json'
  147. },
  148. 'service.flume.agent.command': {
  149. 'real': '/clusters/{clusterName}/hosts/{host}/host_components/FLUME_HANDLER',
  150. 'mock': '',
  151. 'format': function (data) {
  152. return {
  153. type: 'PUT',
  154. data: JSON.stringify({
  155. "RequestInfo": {
  156. "context": data.context,
  157. "flume_handler": data.agentName
  158. },
  159. "Body": {
  160. "HostRoles": {
  161. "state": data.state
  162. }
  163. }
  164. })
  165. }
  166. }
  167. },
  168. 'reassign.stop_services': {
  169. 'real': '/clusters/{clusterName}/services',
  170. 'mock': '',
  171. 'format': function() {
  172. return {
  173. type: 'PUT',
  174. data: JSON.stringify({
  175. "RequestInfo": {
  176. "context": "Stop all services"
  177. },
  178. "Body": {
  179. "ServiceInfo": {
  180. "state": "INSTALLED"
  181. }
  182. }
  183. })
  184. }
  185. }
  186. },
  187. 'reassign.stop_YMR2_services': {
  188. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name.in({servicesList})',
  189. 'mock': '',
  190. 'format': function() {
  191. return {
  192. type: 'PUT',
  193. data: JSON.stringify({
  194. "RequestInfo": {
  195. "context": "Stop without HDFS"
  196. },
  197. "Body": {
  198. "ServiceInfo": {
  199. "state": "INSTALLED"
  200. }
  201. }
  202. })
  203. }
  204. }
  205. },
  206. 'reassign.start_services': {
  207. 'real': '/clusters/{clusterName}/services?params/run_smoke_test=true',
  208. 'mock': '',
  209. 'format': function() {
  210. return {
  211. type: 'PUT',
  212. data: JSON.stringify({
  213. "RequestInfo": {
  214. "context": "Start all services"
  215. },
  216. "Body": {
  217. "ServiceInfo": {
  218. "state": "STARTED"
  219. }
  220. }
  221. })
  222. }
  223. }
  224. },
  225. 'reassign.start_YMR2_services': {
  226. 'real': '/clusters/{clusterName}/services/?ServiceInfo/service_name.in({servicesList})',
  227. 'mock': '',
  228. 'format': function() {
  229. return {
  230. type: 'PUT',
  231. data: JSON.stringify({
  232. "RequestInfo": {
  233. "context": "Start without HDFS"
  234. },
  235. "Body": {
  236. "ServiceInfo": {
  237. "state": "STARTED"
  238. }
  239. }
  240. })
  241. }
  242. }
  243. },
  244. 'reassign.maintenance_mode': {
  245. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  246. 'mock': '',
  247. 'type': 'PUT',
  248. 'format': function () {
  249. return {
  250. data: JSON.stringify(
  251. {
  252. "HostRoles": {
  253. "state": "DISABLED"
  254. }
  255. }
  256. )
  257. }
  258. }
  259. },
  260. 'reassign.remove_component': {
  261. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  262. 'mock': '',
  263. 'type': 'DELETE'
  264. },
  265. 'reassign.load_configs': {
  266. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  267. 'mock': ''
  268. },
  269. 'reassign.save_configs': {
  270. 'real': '/clusters/{clusterName}',
  271. 'mock': '',
  272. 'type': 'PUT',
  273. 'format': function (data) {
  274. return {
  275. async: false,
  276. data: JSON.stringify({
  277. Clusters: {
  278. desired_config: {
  279. "type": data.siteName,
  280. "tag": 'version' + (new Date).getTime(),
  281. "properties": data.properties
  282. }
  283. }
  284. })
  285. }
  286. }
  287. },
  288. 'host_component.passive': {
  289. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  290. 'mock': '',
  291. 'type': 'PUT',
  292. 'format': function(data) {
  293. return {
  294. data: JSON.stringify({
  295. RequestInfo: {
  296. "context": data.requestInfo
  297. },
  298. Body: {
  299. HostRoles: {
  300. maintenance_state: data.passive_state
  301. }
  302. }
  303. })
  304. };
  305. }
  306. },
  307. 'config.cluster_configuration.put': {
  308. 'real': '/clusters/{cluster}',
  309. 'mock': '',
  310. 'format': function(data) {
  311. return {
  312. type: 'PUT',
  313. async: false,
  314. dataType: 'text',
  315. data: data.data
  316. }
  317. }
  318. },
  319. 'config.advanced': {
  320. 'real': '{stackVersionUrl}/services/{serviceName}/configurations?fields=*',
  321. 'mock': '/data/wizard/stack/hdp/version{stackVersion}/{serviceName}.json',
  322. 'format': function (data) {
  323. return {
  324. async: !data.sync
  325. };
  326. }
  327. },
  328. 'config.advanced.global': {
  329. 'real': '{stackVersionUrl}/services?fields=configurations/StackConfigurations/type',
  330. 'mock': '/data/wizard/stack/hdp/version1.3.0/global.json',
  331. 'format': function() {
  332. return {
  333. async: false
  334. };
  335. }
  336. },
  337. 'config.tags': {
  338. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs',
  339. 'mock': '/data/clusters/cluster.json'
  340. },
  341. 'config.tags_and_groups': {
  342. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs,config_groups/*{urlParams}',
  343. 'mock': '/data/clusters/tags_and_groups.json'
  344. },
  345. 'config.tags.sync': {
  346. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs',
  347. 'mock': '/data/clusters/cluster.json',
  348. 'format': function() {
  349. return {
  350. async: false
  351. };
  352. }
  353. },
  354. 'config.ambari.database.info': {
  355. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=hostComponents/RootServiceHostComponents/properties/server.jdbc.database,hostComponents/RootServiceHostComponents/properties/server.jdbc.url',
  356. 'mock': '',
  357. 'format': function() {
  358. return {
  359. async: false
  360. };
  361. }
  362. },
  363. 'config_groups.all_fields': {
  364. 'real': '/clusters/{clusterName}/config_groups?fields=*',
  365. 'mock': ''
  366. },
  367. 'config_groups.get_config_group_by_id': {
  368. 'real': '/clusters/{clusterName}/config_groups/{id}',
  369. 'mock': ''
  370. },
  371. 'config_groups.update_config_group': {
  372. 'real': '/clusters/{clusterName}/config_groups/{id}',
  373. 'mock': '',
  374. 'type': 'PUT',
  375. 'format': function (data) {
  376. return {
  377. async: false,
  378. data: JSON.stringify(
  379. [
  380. data.configGroup
  381. ]
  382. )
  383. }
  384. }
  385. },
  386. 'config_groups.delete_config_group': {
  387. 'real': '/clusters/{clusterName}/config_groups/{id}',
  388. 'mock': '',
  389. 'type': 'DELETE'
  390. },
  391. 'config.on_site': {
  392. 'real': '/clusters/{clusterName}/configurations?{params}',
  393. 'mock': '/data/configurations/cluster_level_configs.json?{params}',
  394. 'format': function() {
  395. return {
  396. async: false
  397. };
  398. }
  399. },
  400. 'config.host_overrides': {
  401. 'real': '/clusters/{clusterName}/configurations?{params}',
  402. 'mock': '/data/configurations/host_level_overrides_configs.json?{params}',
  403. 'format': function() {
  404. return {
  405. async: false
  406. };
  407. }
  408. },
  409. 'host.host_component.delete': {
  410. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  411. 'mock': '',
  412. 'format': function() {
  413. return {
  414. type: 'DELETE',
  415. async: false
  416. }
  417. }
  418. },
  419. 'host.host_components.delete': {
  420. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  421. 'mock': '',
  422. 'format': function() {
  423. return {
  424. type: 'DELETE',
  425. async: false
  426. }
  427. }
  428. },
  429. 'host.host_component.stop': {
  430. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  431. 'mock': '/data/wizard/deploy/poll_1.json',
  432. 'format': function(data) {
  433. return {
  434. type: 'PUT',
  435. data: data.data
  436. }
  437. }
  438. },
  439. 'host.host_components.stop': {
  440. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components',
  441. 'mock': '/data/wizard/deploy/poll_1.json',
  442. 'format': function(data) {
  443. return {
  444. type: 'PUT',
  445. async: false,
  446. data: data.data
  447. }
  448. }
  449. },
  450. 'host.host_component.start': {
  451. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  452. 'mock': '/data/wizard/deploy/poll_1.json',
  453. 'format': function(data) {
  454. return {
  455. type: 'PUT',
  456. data: data.data
  457. }
  458. }
  459. },
  460. 'host.host_component.install': {
  461. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  462. 'mock': '/data/wizard/deploy/poll_1.json',
  463. 'format': function(data) {
  464. return {
  465. type: 'PUT',
  466. data: data.data
  467. }
  468. }
  469. },
  470. 'host.host_component.update': {
  471. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  472. 'mock': '/data/wizard/deploy/poll_1.json',
  473. 'format': function(data) {
  474. return {
  475. type: 'PUT',
  476. data: data.data
  477. }
  478. }
  479. },
  480. 'host.host_component.add_new_component': {
  481. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  482. 'mock': '/data/wizard/deploy/poll_1.json',
  483. 'format': function(data) {
  484. return {
  485. type: 'POST',
  486. data: data.data
  487. }
  488. }
  489. },
  490. 'host.host_component.install_new_component': {
  491. 'real': '/clusters/{clusterName}/host_components?HostRoles/host_name={hostName}\&HostRoles/component_name={componentName}\&HostRoles/state=INIT',
  492. 'mock': '/data/wizard/deploy/poll_1.json',
  493. 'format': function(data) {
  494. return {
  495. type: 'PUT',
  496. data: data.data
  497. }
  498. }
  499. },
  500. 'host.host_component.slave_desired_admin_state': {
  501. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}/?fields=HostRoles/desired_admin_state',
  502. 'mock': ''
  503. },
  504. 'host.host_component.decommission_status': {
  505. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}/?fields=ServiceComponentInfo',
  506. 'mock': ''
  507. },
  508. 'host.host_component.decommission_status_datanode': {
  509. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}?fields=metrics/dfs/namenode',
  510. 'mock': ''
  511. },
  512. 'host.host_component.decommission_slave': {
  513. 'real' : '/clusters/{clusterName}/requests',
  514. 'mock' : '',
  515. 'format' : function(data) {
  516. return {
  517. type : 'POST',
  518. data : JSON.stringify({
  519. RequestInfo: {
  520. 'context': data.context,
  521. 'command': data.command,
  522. 'parameters': {
  523. 'slave_type': data.slaveType,
  524. 'excluded_hosts': data.hostName
  525. }
  526. },
  527. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  528. })
  529. }
  530. }
  531. },
  532. 'host.host_component.recommission_and_restart': {
  533. 'real': '/clusters/{clusterName}/request_schedules',
  534. 'mock': '',
  535. 'format' : function(data) {
  536. return {
  537. type : 'POST',
  538. data : JSON.stringify([ {
  539. "RequestSchedule" : {
  540. "batch" : [ {
  541. "requests" : data.batches
  542. }, {
  543. "batch_settings" : {
  544. "batch_separation_in_seconds" : data.intervalTimeSeconds,
  545. "task_failure_tolerance" : data.tolerateSize
  546. }
  547. } ]
  548. }
  549. } ])
  550. }
  551. }
  552. },
  553. 'host.host_component.recommission_slave' : {
  554. 'real' : '/clusters/{clusterName}/requests',
  555. 'mock' : '',
  556. 'format' : function(data) {
  557. return {
  558. type : 'POST',
  559. data : JSON.stringify({
  560. RequestInfo: {
  561. context: data.context,
  562. command: data.command,
  563. parameters: {
  564. slave_type: data.slaveType,
  565. included_hosts: data.hostName
  566. }
  567. },
  568. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  569. })
  570. }
  571. }
  572. },
  573. 'host.stale_host_components.start_stop': {
  574. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components?HostRoles/stale_configs=true&' +
  575. 'HostRoles/component_name.in({componentNames})',
  576. 'mock': '',
  577. 'type': 'PUT',
  578. 'format': function (data) {
  579. return {
  580. data: JSON.stringify({
  581. RequestInfo: {
  582. "context": data.context
  583. },
  584. Body: {
  585. "HostRoles": {
  586. "state": data.state
  587. }
  588. }
  589. })
  590. }
  591. }
  592. },
  593. 'host.host_component.refresh_configs': {
  594. 'real':'/clusters/{clusterName}/requests',
  595. 'mock':'',
  596. 'format': function(data) {
  597. return {
  598. type : 'POST',
  599. data : JSON.stringify({
  600. "RequestInfo": {
  601. "command": "CONFIGURE",
  602. "context": data.context
  603. },
  604. "Requests/resource_filters": data.resource_filters
  605. })
  606. }
  607. }
  608. },
  609. 'host.delete': {
  610. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  611. 'mock': '',
  612. 'type': 'DELETE',
  613. 'format': function() {
  614. return {
  615. async: false
  616. }
  617. }
  618. },
  619. 'hosts.metrics': {
  620. 'real': '/clusters/{clusterName}/hosts?fields={metricName}',
  621. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  622. },
  623. 'hosts.metrics.host_component': {
  624. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?fields=host_components/{metricName}',
  625. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  626. },
  627. 'service.service_component': {
  628. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}',
  629. 'mock': '',
  630. 'format': function(data) {
  631. return {
  632. async: data.async
  633. };
  634. }
  635. },
  636. 'service.metrics.flume.channel_fill_percent': {
  637. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/*/ChannelFillPercentage[{fromSeconds},{toSeconds},{stepSeconds}]',
  638. 'mock': '/data/services/metrics/flume/channelFillPct.json',
  639. 'testInProduction': true
  640. },
  641. 'service.metrics.flume.channel_size': {
  642. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/*/ChannelSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  643. 'mock': '/data/services/metrics/flume/channelSize.json',
  644. 'testInProduction': true
  645. },
  646. 'service.metrics.flume.sink_drain_success': {
  647. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/*/EventDrainSuccessCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  648. 'mock': '/data/services/metrics/flume/sinkDrainSuccessCount.json',
  649. 'testInProduction': true
  650. },
  651. 'service.metrics.flume.sink_connection_failed': {
  652. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/*/ConnectionFailedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  653. 'mock': '/data/services/metrics/flume/sinkConnectionFailedCount.json',
  654. 'testInProduction': true
  655. },
  656. 'service.metrics.flume.gc': {
  657. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  658. 'mock': '/data/services/metrics/flume/jvmGcTime.json',
  659. 'testInProduction': true
  660. },
  661. 'service.metrics.flume.jvm_heap_used': {
  662. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  663. 'mock': '/data/services/metrics/flume/jvmMemHeapUsedM.json',
  664. 'testInProduction': true
  665. },
  666. 'service.metrics.flume.jvm_threads_runnable': {
  667. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}]',
  668. 'mock': '/data/services/metrics/flume/jvmThreadsRunnable.json',
  669. 'testInProduction': true
  670. },
  671. 'service.metrics.flume.cpu_user': {
  672. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/cpu/cpu_user[{fromSeconds},{toSeconds},{stepSeconds}]',
  673. 'mock': '',
  674. 'testInProduction': true
  675. },
  676. 'service.metrics.flume.source_accepted': {
  677. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SOURCE/*/EventAcceptedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  678. 'mock': '/data/services/metrics/flume/sourceEventAccepted.json',
  679. 'testInProduction': true
  680. },
  681. 'service.metrics.hbase.cluster_requests': {
  682. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/cluster_requests[{fromSeconds},{toSeconds},{stepSeconds}]',
  683. 'mock': '/data/services/metrics/hbase/cluster_requests.json',
  684. 'testInProduction': true
  685. },
  686. 'service.metrics.hbase.hlog_split_size': {
  687. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitSize_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  688. 'mock': '/data/services/metrics/hbase/hlog_split_size.json',
  689. 'testInProduction': true
  690. },
  691. 'service.metrics.hbase.hlog_split_time': {
  692. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  693. 'mock': '/data/services/metrics/hbase/hlog_split_time.json',
  694. 'testInProduction': true
  695. },
  696. 'service.metrics.hbase.regionserver_queuesize': {
  697. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/flushQueueSize[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/compactionQueueSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  698. 'mock': '/data/services/metrics/hbase/regionserver_queuesize.json',
  699. 'testInProduction': true
  700. },
  701. 'service.metrics.hbase.regionserver_regions': {
  702. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/regions[{fromSeconds},{toSeconds},{stepSeconds}]',
  703. 'mock': '/data/services/metrics/hbase/regionserver_regions.json',
  704. 'testInProduction': true
  705. },
  706. 'service.metrics.hbase.regionserver_rw_requests': {
  707. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/readRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/writeRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  708. 'mock': '/data/services/metrics/hbase/regionserver_rw_requests.json',
  709. 'testInProduction': true
  710. },
  711. 'service.metrics.mapreduce.gc': {
  712. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  713. 'mock': '/data/services/metrics/mapreduce/gc.json',
  714. 'testInProduction': true
  715. },
  716. 'service.metrics.mapreduce.jobs_status': {
  717. 'real': '/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/jobs_completed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_preparing[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_failed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_submitted[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_failed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/jobs_running[{fromSeconds},{toSeconds},{stepSeconds}]',
  718. 'mock': '/data/services/metrics/mapreduce/jobs_status.json',
  719. 'testInProduction': true
  720. },
  721. 'service.metrics.mapreduce.jobs_heap': {
  722. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/jvm/memNonHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memNonHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  723. 'mock': '/data/services/metrics/mapreduce/jvm_heap.json',
  724. 'testInProduction': true
  725. },
  726. 'service.metrics.mapreduce.jobs_threads': {
  727. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsBlocked[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsWaiting[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsTimedWaiting[{fromSeconds},{toSeconds},{stepSeconds}]',
  728. 'mock': '/data/services/metrics/mapreduce/jvm_threads.json',
  729. 'testInProduction': true
  730. },
  731. 'service.metrics.mapreduce.map_slots': {
  732. 'real': '/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/occupied_map_slots[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/reserved_map_slots[{fromSeconds},{toSeconds},{stepSeconds}]',
  733. 'mock': '/data/services/metrics/mapreduce/map_slots.json',
  734. 'testInProduction': true
  735. },
  736. 'service.metrics.mapreduce.reduce_slots': {
  737. 'real': '/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/occupied_reduce_slots[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/reserved_reduce_slots[{fromSeconds},{toSeconds},{stepSeconds}]',
  738. 'mock': '/data/services/metrics/mapreduce/reduce_slots.json',
  739. 'testInProduction': true
  740. },
  741. 'service.metrics.mapreduce.rpc': {
  742. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  743. 'mock': '/data/services/metrics/mapreduce/rpc.json',
  744. 'testInProduction': true
  745. },
  746. 'service.metrics.mapreduce.tasks_running_waiting': {
  747. 'real': '/clusters/{clusterName}/services/MAPREDUCE/components/JOBTRACKER?fields=metrics/mapred/jobtracker/running_maps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/running_reduces[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/waiting_maps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/mapred/jobtracker/waiting_reduces[{fromSeconds},{toSeconds},{stepSeconds}]',
  748. 'mock': '/data/services/metrics/mapreduce/tasks_running_waiting.json',
  749. 'testInProduction': true
  750. },
  751. 'service.metrics.hdfs.block_status': {
  752. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/FSNamesystem/PendingReplicationBlocks[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/UnderReplicatedBlocks[{fromSeconds},{toSeconds},{stepSeconds}]',
  753. 'mock': '/data/services/metrics/hdfs/block_status.json',
  754. 'testInProduction': true
  755. },
  756. 'service.metrics.hdfs.file_operations': {
  757. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/namenode/FileInfoOps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/namenode/CreateFileOps[{fromSeconds},{toSeconds},{stepSeconds}]',
  758. 'mock': '/data/services/metrics/hdfs/file_operations.json',
  759. 'testInProduction': true
  760. },
  761. 'service.metrics.hdfs.gc': {
  762. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  763. 'mock': '/data/services/metrics/hdfs/gc.json',
  764. 'testInProduction': true
  765. },
  766. 'service.metrics.hdfs.io': {
  767. 'real': '/clusters/{clusterName}/services/HDFS/components/DATANODE?fields=metrics/dfs/datanode/bytes_written[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/datanode/bytes_read[{fromSeconds},{toSeconds},{stepSeconds}]',
  768. 'mock': '/data/services/metrics/hdfs/io.json',
  769. 'testInProduction': true
  770. },
  771. 'service.metrics.hdfs.jvm_heap': {
  772. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/memNonHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memNonHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  773. 'mock': '/data/services/metrics/hdfs/jvm_heap.json',
  774. 'testInProduction': true
  775. },
  776. 'service.metrics.hdfs.jvm_threads': {
  777. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsBlocked[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsWaiting[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsTimedWaiting[{fromSeconds},{toSeconds},{stepSeconds}]',
  778. 'mock': '/data/services/metrics/hdfs/jvm_threads.json',
  779. 'testInProduction': true
  780. },
  781. 'service.metrics.hdfs.rpc': {
  782. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  783. 'mock': '/data/services/metrics/hdfs/rpc.json',
  784. 'testInProduction': true
  785. },
  786. 'service.metrics.hdfs.space_utilization': {
  787. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/FSNamesystem/CapacityRemainingGB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/CapacityUsedGB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/CapacityTotalGB[{fromSeconds},{toSeconds},{stepSeconds}]',
  788. 'mock': '/data/services/metrics/hdfs/space_utilization.json',
  789. 'testInProduction': true
  790. },
  791. 'service.start_stop': {
  792. 'real': '/clusters/{clusterName}/services?params/run_smoke_test=true',
  793. 'mock': '/data/mirroring/poll/poll_6.json',
  794. 'format': function (data) {
  795. return {
  796. type: 'PUT',
  797. async: false,
  798. data: data.data
  799. };
  800. }
  801. },
  802. 'service.metrics.yarn.gc': {
  803. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  804. 'mock': '/data/services/metrics/yarn/gc.json',
  805. 'testInProduction': true
  806. },
  807. 'service.metrics.yarn.jobs_threads': {
  808. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsBlocked[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsWaiting[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsTimedWaiting[{fromSeconds},{toSeconds},{stepSeconds}]',
  809. 'mock': '/data/services/metrics/yarn/jvm_threads.json',
  810. 'testInProduction': true
  811. },
  812. 'service.metrics.yarn.rpc': {
  813. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  814. 'mock': '/data/services/metrics/yarn/rpc.json',
  815. 'testInProduction': true
  816. },
  817. 'service.metrics.yarn.jobs_heap': {
  818. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/memNonHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memNonHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  819. 'mock': '/data/services/metrics/yarn/jvm_heap.json',
  820. 'testInProduction': true
  821. },
  822. 'service.metrics.yarn.queue.allocated': {
  823. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AvailableMB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/PendingMB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AllocatedMB[{fromSeconds},{toSeconds},{stepSeconds}]',
  824. 'mock': '',
  825. 'testInProduction': true
  826. },
  827. 'service.metrics.yarn.queue.allocated.container': {
  828. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AllocatedContainers[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/ReservedContainers[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/PendingContainers[{fromSeconds},{toSeconds},{stepSeconds}]',
  829. 'mock': '',
  830. 'testInProduction': true
  831. },
  832. 'service.metrics.yarn.node.manager.statuses': {
  833. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/ClusterMetrics/NumActiveNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumDecommissionedNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumLostNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumRebootedNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumUnhealthyNMs[{fromSeconds},{toSeconds},{stepSeconds}]',
  834. 'mock': '',
  835. 'testInProduction': true
  836. },
  837. 'service.metrics.yarn.queue.memory.resource': {
  838. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=',
  839. 'mock': '',
  840. 'format': function (data, opt) {
  841. var field1 = 'metrics/yarn/Queue/{queueName}/AllocatedMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  842. var field2 = 'metrics/yarn/Queue/{queueName}/AvailableMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  843. if (opt.url != null && data.queueNames != null && data.queueNames.length > 0) {
  844. data.queueNames.forEach(function (q) {
  845. data.queueName = q;
  846. opt.url += (formatUrl(field1, data) + ",");
  847. opt.url += (formatUrl(field2, data) + ",");
  848. });
  849. } else {
  850. opt.url += (formatUrl(field1, data) + ",");
  851. opt.url += (formatUrl(field2, data) + ",");
  852. }
  853. },
  854. 'testInProduction': true
  855. },
  856. 'service.metrics.yarn.queue.apps.states.current': {
  857. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AppsPending[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsRunning[{fromSeconds},{toSeconds},{stepSeconds}]',
  858. 'mock': '',
  859. 'testInProduction': true
  860. },
  861. 'service.metrics.yarn.queue.apps.states.finished': {
  862. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AppsKilled[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsFailed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsSubmitted[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsCompleted[{fromSeconds},{toSeconds},{stepSeconds}]',
  863. 'mock': '',
  864. 'testInProduction': true
  865. },
  866. 'service.metrics.storm.nimbus': {
  867. 'real': '/clusters/{clusterName}/services/STORM/components/NIMBUS?fields={metricsTemplate}',
  868. 'mock': ''
  869. },
  870. 'dashboard.cluster_metrics.cpu': {
  871. 'real': '/clusters/{clusterName}/?fields=metrics/cpu[{fromSeconds},{toSeconds},{stepSeconds}]',
  872. 'mock': '/data/cluster_metrics/cpu_1hr.json',
  873. 'testInProduction': true
  874. },
  875. 'dashboard.cluster_metrics.load': {
  876. 'real': '/clusters/{clusterName}/?fields=metrics/load[{fromSeconds},{toSeconds},{stepSeconds}]',
  877. 'mock': '/data/cluster_metrics/load_1hr.json',
  878. 'testInProduction': true
  879. },
  880. 'dashboard.cluster_metrics.memory': {
  881. 'real': '/clusters/{clusterName}/?fields=metrics/memory[{fromSeconds},{toSeconds},{stepSeconds}]',
  882. 'mock': '/data/cluster_metrics/memory_1hr.json',
  883. 'testInProduction': true
  884. },
  885. 'dashboard.cluster_metrics.network': {
  886. 'real': '/clusters/{clusterName}/?fields=metrics/network[{fromSeconds},{toSeconds},{stepSeconds}]',
  887. 'mock': '/data/cluster_metrics/network_1hr.json',
  888. 'testInProduction': true
  889. },
  890. 'host.metrics.cpu': {
  891. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/cpu/cpu_user[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_wio[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_nice[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_aidle[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_system[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_idle[{fromSeconds},{toSeconds},{stepSeconds}]',
  892. 'mock': '/data/hosts/metrics/cpu.json',
  893. 'testInProduction': true
  894. },
  895. 'host.metrics.disk': {
  896. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/disk/disk_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/disk/disk_free[{fromSeconds},{toSeconds},{stepSeconds}]',
  897. 'mock': '/data/hosts/metrics/disk.json',
  898. 'testInProduction': true
  899. },
  900. 'host.metrics.load': {
  901. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/load/load_fifteen[{fromSeconds},{toSeconds},{stepSeconds}],metrics/load/load_one[{fromSeconds},{toSeconds},{stepSeconds}],metrics/load/load_five[{fromSeconds},{toSeconds},{stepSeconds}]',
  902. 'mock': '/data/hosts/metrics/load.json',
  903. 'testInProduction': true
  904. },
  905. 'host.metrics.memory': {
  906. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/memory/swap_free[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_shared[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_free[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_cached[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_buffers[{fromSeconds},{toSeconds},{stepSeconds}]',
  907. 'mock': '/data/hosts/metrics/memory.json',
  908. 'testInProduction': true
  909. },
  910. 'host.metrics.network': {
  911. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/network/bytes_in[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/bytes_out[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/pkts_in[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/pkts_out[{fromSeconds},{toSeconds},{stepSeconds}]',
  912. 'mock': '/data/hosts/metrics/network.json',
  913. 'testInProduction': true
  914. },
  915. 'host.metrics.processes': {
  916. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/process/proc_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/process/proc_run[{fromSeconds},{toSeconds},{stepSeconds}]',
  917. 'mock': '/data/hosts/metrics/processes.json',
  918. 'testInProduction': true
  919. },
  920. 'host.service_config_hosts_overrides': {
  921. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  922. 'mock': '',
  923. 'format': function() {
  924. return {
  925. async: false,
  926. timeout: 10000
  927. };
  928. }
  929. },
  930. 'admin.security_status': {
  931. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs',
  932. 'mock': '',
  933. 'format': function() {
  934. return {
  935. timeout: 10000
  936. };
  937. }
  938. },
  939. 'settings.get.user_pref': {
  940. 'real': '/persist/{key}',
  941. 'mock': '/data/user_settings/{key}.json',
  942. 'format': function(data) {
  943. return {
  944. async: data.async
  945. };
  946. }
  947. },
  948. 'settings.post.user_pref': {
  949. 'real': '/persist',
  950. 'mock': '',
  951. 'type': 'POST',
  952. 'format': function (data) {
  953. return {
  954. async: data.async,
  955. data: JSON.stringify(data.keyValuePair)
  956. }
  957. }
  958. },
  959. 'cluster.load_cluster_name': {
  960. 'real': '/clusters',
  961. 'mock': '/data/clusters/info.json',
  962. 'format': function() {
  963. return {
  964. async: false
  965. };
  966. }
  967. },
  968. 'cluster.update_upgrade_version': {
  969. 'real': '/stacks/HDP/versions?fields=stackServices/StackServices,Versions',
  970. 'mock': '/data/wizard/stack/stacks.json',
  971. 'format': function() {
  972. return {
  973. async: false
  974. };
  975. }
  976. },
  977. 'cluster.load_repositories': {
  978. 'real': '/stacks/{stackName}/versions/{stackVersion}/operating_systems?fields=repositories/*',
  979. 'mock': '',
  980. 'type': 'GET',
  981. 'format': function (data) {
  982. return {
  983. data: data.data
  984. };
  985. }
  986. },
  987. 'admin.high_availability.stop_all_services': {
  988. 'real': '/clusters/{clusterName}/services',
  989. 'mock': '',
  990. 'format': function() {
  991. return {
  992. type: 'PUT',
  993. data: JSON.stringify({
  994. "RequestInfo": {
  995. "context": "Stop all services"
  996. },
  997. "Body": {
  998. "ServiceInfo": {
  999. "state": "INSTALLED"
  1000. }
  1001. }
  1002. })
  1003. }
  1004. }
  1005. },
  1006. 'admin.high_availability.start_all_services': {
  1007. 'real': '/clusters/{clusterName}/services',
  1008. 'mock': '',
  1009. 'format': function() {
  1010. return {
  1011. type: 'PUT',
  1012. data: JSON.stringify({
  1013. "RequestInfo": {
  1014. "context": "Start all services"
  1015. },
  1016. "Body": {
  1017. "ServiceInfo": {
  1018. "state": "STARTED"
  1019. }
  1020. }
  1021. })
  1022. }
  1023. }
  1024. },
  1025. 'admin.high_availability.polling': {
  1026. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=tasks/*',
  1027. 'mock': '',
  1028. 'type': 'GET'
  1029. },
  1030. 'admin.high_availability.getNnCheckPointStatus': {
  1031. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/NAMENODE',
  1032. 'mock': '',
  1033. 'type': 'GET'
  1034. },
  1035. 'admin.high_availability.getJnCheckPointStatus': {
  1036. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/JOURNALNODE?fields=metrics',
  1037. 'mock': ''
  1038. },
  1039. 'admin.high_availability.getHostComponent': {
  1040. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1041. 'mock': ''
  1042. },
  1043. 'admin.high_availability.create_component': {
  1044. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  1045. 'mock': '',
  1046. 'type': 'POST',
  1047. 'format': function (data) {
  1048. return {
  1049. data: JSON.stringify({
  1050. "host_components": [
  1051. {
  1052. "HostRoles": {
  1053. "component_name": data.componentName
  1054. }
  1055. }
  1056. ]
  1057. })
  1058. }
  1059. }
  1060. },
  1061. 'admin.high_availability.create_journalnode': {
  1062. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1063. 'mock': '',
  1064. 'type': 'POST',
  1065. 'format': function() {
  1066. return {
  1067. data: JSON.stringify({
  1068. "components": [
  1069. {
  1070. "ServiceComponentInfo": {
  1071. "component_name": "JOURNALNODE"
  1072. }
  1073. }
  1074. ]
  1075. })
  1076. }
  1077. }
  1078. },
  1079. 'admin.high_availability.create_zkfc': {
  1080. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1081. 'mock': '',
  1082. 'type': 'POST',
  1083. 'format': function() {
  1084. return {
  1085. data: JSON.stringify({
  1086. "components": [
  1087. {
  1088. "ServiceComponentInfo": {
  1089. "component_name": "ZKFC"
  1090. }
  1091. }
  1092. ]
  1093. })
  1094. }
  1095. }
  1096. },
  1097. 'admin.high_availability.install_component': {
  1098. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1099. 'mock': '',
  1100. 'type': 'PUT',
  1101. 'format': function (data) {
  1102. return {
  1103. data: JSON.stringify({
  1104. RequestInfo: {
  1105. "context": "Install " + data.displayName
  1106. },
  1107. Body: {
  1108. "HostRoles": {
  1109. "state": "INSTALLED"
  1110. }
  1111. }
  1112. })
  1113. }
  1114. }
  1115. },
  1116. 'admin.high_availability.start_component': {
  1117. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1118. 'mock': '',
  1119. 'type': 'PUT',
  1120. 'format': function (data) {
  1121. return {
  1122. data: JSON.stringify({
  1123. RequestInfo: {
  1124. "context": "Start " + data.displayName
  1125. },
  1126. Body: {
  1127. "HostRoles": {
  1128. "state": "STARTED"
  1129. }
  1130. }
  1131. })
  1132. }
  1133. }
  1134. },
  1135. 'admin.high_availability.maintenance_mode': {
  1136. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1137. 'mock': '',
  1138. 'type': 'PUT',
  1139. 'format': function () {
  1140. return {
  1141. data: JSON.stringify({
  1142. "HostRoles": {
  1143. "state": "DISABLED"
  1144. }
  1145. })
  1146. }
  1147. }
  1148. },
  1149. 'admin.high_availability.stop_component': {
  1150. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1151. 'mock': '',
  1152. 'type': 'PUT',
  1153. 'format': function (data) {
  1154. return {
  1155. data: JSON.stringify({
  1156. RequestInfo: {
  1157. "context": "Stop " + data.displayName
  1158. },
  1159. Body: {
  1160. "HostRoles": {
  1161. "state": "INSTALLED"
  1162. }
  1163. }
  1164. })
  1165. }
  1166. }
  1167. },
  1168. 'admin.high_availability.load_configs': {
  1169. 'real': '/clusters/{clusterName}/configurations?(type=core-site&tag={coreSiteTag})|(type=hdfs-site&tag={hdfsSiteTag})',
  1170. 'mock': '',
  1171. 'type': 'GET'
  1172. },
  1173. 'admin.high_availability.save_configs': {
  1174. 'real': '/clusters/{clusterName}',
  1175. 'mock': '',
  1176. 'type': 'PUT',
  1177. 'format': function (data) {
  1178. return {
  1179. async: false,
  1180. data: JSON.stringify({
  1181. Clusters: {
  1182. desired_config: {
  1183. "type": data.siteName,
  1184. "tag": 'version' + (new Date).getTime(),
  1185. "properties": data.properties
  1186. }
  1187. }
  1188. })
  1189. }
  1190. }
  1191. },
  1192. 'admin.high_availability.load_hbase_configs': {
  1193. 'real': '/clusters/{clusterName}/configurations?type=hbase-site&tag={hbaseSiteTag}',
  1194. 'mock': '',
  1195. 'type': 'GET'
  1196. },
  1197. 'admin.delete_component': {
  1198. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1199. 'mock': '',
  1200. 'type': 'DELETE'
  1201. },
  1202. 'admin.security.cluster_configs': {
  1203. 'real': '/clusters/{clusterName}',
  1204. 'mock': '',
  1205. 'format': function() {
  1206. return {
  1207. timeout: 10000
  1208. };
  1209. }
  1210. },
  1211. 'admin.delete_host': {
  1212. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  1213. 'mock': '',
  1214. 'type': 'DELETE'
  1215. },
  1216. 'admin.get.all_configurations': {
  1217. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  1218. 'mock': '',
  1219. 'format': function() {
  1220. return {
  1221. timeout: 10000
  1222. };
  1223. }
  1224. },
  1225. 'admin.security.apply_configurations': {
  1226. 'real': '/clusters/{clusterName}',
  1227. 'mock': '',
  1228. 'format': function (data) {
  1229. return {
  1230. type: 'PUT',
  1231. timeout: 10000,
  1232. data: data.configData
  1233. };
  1234. }
  1235. },
  1236. 'admin.security.apply_configuration': {
  1237. 'real': '/clusters/{clusterName}',
  1238. 'mock': '',
  1239. 'format': function(data) {
  1240. return {
  1241. type: 'PUT',
  1242. async: false,
  1243. timeout: 5000,
  1244. data: JSON.stringify(data.clusterData)
  1245. };
  1246. }
  1247. },
  1248. 'admin.security.add.cluster_configs': {
  1249. 'real': '/clusters/{clusterName}' + '?fields=Clusters/desired_configs',
  1250. 'mock': '',
  1251. 'format': function() {
  1252. return {
  1253. timeout: 10000
  1254. };
  1255. }
  1256. },
  1257. 'admin.stack_upgrade.run_upgrade': {
  1258. 'real': '/clusters/{clusterName}',
  1259. 'mock': '',
  1260. 'format': function (data) {
  1261. return {
  1262. type: 'PUT',
  1263. async: false,
  1264. data: data.data
  1265. };
  1266. }
  1267. },
  1268. 'admin.stack_upgrade.stop_services': {
  1269. 'real': '/clusters/{clusterName}/services?ServiceInfo/state=STARTED',
  1270. 'mock': '',
  1271. 'format': function (data) {
  1272. return {
  1273. type: 'PUT',
  1274. async: false,
  1275. data: data.data
  1276. };
  1277. }
  1278. },
  1279. 'admin.user.create': {
  1280. 'real': '/users/{user}',
  1281. 'mock': '/data/users/users.json',
  1282. 'format': function(data) {
  1283. return {
  1284. type: 'POST',
  1285. data: JSON.stringify(data.data)
  1286. }
  1287. }
  1288. },
  1289. 'admin.user.delete': {
  1290. 'real': '/users/{user}',
  1291. 'mock': '/data/users/users.json',
  1292. 'format': function() {
  1293. return {
  1294. type: 'DELETE'
  1295. }
  1296. }
  1297. },
  1298. 'admin.user.edit': {
  1299. 'real': '/users/{user}',
  1300. 'mock':'/data/users/users.json',
  1301. 'format': function(data) {
  1302. return {
  1303. type: 'PUT',
  1304. data: data.data
  1305. }
  1306. }
  1307. },
  1308. 'admin.stack_upgrade.do_poll': {
  1309. 'real': '/clusters/{cluster}/requests/{requestId}?fields=tasks/*',
  1310. 'mock': '/data/wizard/{mock}'
  1311. },
  1312. 'wizard.advanced_repositories.valid_url': {
  1313. 'real': '/stacks/{stackName}/versions/{stackVersion}/operating_systems/{osType}/repositories/{repoId}',
  1314. 'mock': '',
  1315. 'type': 'PUT',
  1316. 'format': function (data) {
  1317. return {
  1318. async: true,
  1319. data: JSON.stringify(data.data)
  1320. }
  1321. }
  1322. },
  1323. 'wizard.install_services.add_host_controller.is_retry': {
  1324. 'real': '/clusters/{cluster}/host_components',
  1325. 'mock': '',
  1326. 'format': function (data) {
  1327. return {
  1328. type: 'PUT',
  1329. async: false,
  1330. data: data.data
  1331. };
  1332. }
  1333. },
  1334. 'wizard.install_services.add_host_controller.not_is_retry': {
  1335. 'real': '/clusters/{cluster}/host_components',
  1336. 'mock': '',
  1337. 'format': function(data) {
  1338. return {
  1339. type: 'PUT',
  1340. async: false,
  1341. data: data.data
  1342. };
  1343. }
  1344. },
  1345. 'wizard.install_services.installer_controller.is_retry': {
  1346. 'real': '/clusters/{cluster}/host_components?HostRoles/state=INSTALLED',
  1347. 'mock': '/data/wizard/deploy/2_hosts/poll_1.json',
  1348. 'type': 'PUT',
  1349. 'format': function (data) {
  1350. return {
  1351. async: false,
  1352. data: data.data
  1353. };
  1354. }
  1355. },
  1356. 'wizard.install_services.installer_controller.not_is_retry': {
  1357. 'real': '/clusters/{cluster}/services?ServiceInfo/state=INIT',
  1358. 'mock': '/data/wizard/deploy/2_hosts/poll_1.json',
  1359. 'type': 'PUT',
  1360. 'format': function (data) {
  1361. return {
  1362. async: false,
  1363. data: data.data
  1364. };
  1365. }
  1366. },
  1367. 'wizard.install_services.add_service_controller.get_failed_host_components': {
  1368. 'real': '/clusters/{clusterName}/host_components?fields=HostRoles/state,component/ServiceComponentInfo/service_name',
  1369. 'mock': '',
  1370. 'format': function() {
  1371. return {
  1372. async: false
  1373. };
  1374. }
  1375. },
  1376. 'wizard.service_components': {
  1377. 'real': '{stackUrl}/services?fields=StackServices/comments,StackServices/service_version,serviceComponents/*',
  1378. 'mock': '/data/stacks/HDP-2.1/service_components.json',
  1379. 'format': function(data) {
  1380. return {
  1381. timeout: 10000,
  1382. async: !!data.async
  1383. };
  1384. }
  1385. },
  1386. 'wizard.step9.installer.get_host_status': {
  1387. 'real': '/clusters/{cluster}/hosts?fields=Hosts/host_state,host_components/HostRoles/state',
  1388. 'mock': '/data/wizard/deploy/5_hosts/get_host_state.json',
  1389. 'format': function () {
  1390. return {
  1391. async: false
  1392. };
  1393. }
  1394. },
  1395. 'wizard.step9.installer.launch_start_services': {
  1396. 'real': '/clusters/{cluster}/services?ServiceInfo/state=INSTALLED&params/run_smoke_test=true&params/reconfigure_client=false',
  1397. 'mock': '/data/wizard/deploy/5_hosts/poll_6.json',
  1398. 'format': function (data) {
  1399. var d = {
  1400. type: 'PUT',
  1401. async: false,
  1402. data: data.data
  1403. };
  1404. if (App.testMode) {
  1405. d.type = 'GET';
  1406. }
  1407. return d;
  1408. }
  1409. },
  1410. 'wizard.step9.add_service.launch_start_services': {
  1411. 'real': '/clusters/{cluster}/services?ServiceInfo/state=INSTALLED&ServiceInfo/service_name.in({servicesList})&params/reconfigure_client=false',
  1412. 'mock': '/data/wizard/deploy/5_hosts/poll_6.json',
  1413. 'format': function (data) {
  1414. var d = {
  1415. type: 'PUT',
  1416. async: false,
  1417. data: data.data
  1418. };
  1419. if (App.testMode) {
  1420. d.type = 'GET';
  1421. }
  1422. return d;
  1423. }
  1424. },
  1425. 'wizard.step9.add_host.launch_start_services': {
  1426. 'real': '/clusters/{cluster}/host_components',
  1427. 'mock': '/data/wizard/deploy/5_hosts/poll_6.json',
  1428. 'format': function (data) {
  1429. return {
  1430. type: 'PUT',
  1431. async: false,
  1432. data: data.data
  1433. };
  1434. }
  1435. },
  1436. 'wizard.step9.load_log': {
  1437. 'real': '/clusters/{cluster}/requests/{requestId}?fields=tasks/Tasks/command,tasks/Tasks/exit_code,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true',
  1438. 'mock': '/data/wizard/deploy/5_hosts/poll_{numPolls}.json',
  1439. 'format': function () {
  1440. return {
  1441. type: 'GET',
  1442. async: true,
  1443. dataType: 'text'
  1444. };
  1445. }
  1446. },
  1447. 'wizard.step8.delete_cluster': {
  1448. 'real': '/clusters/{name}',
  1449. 'mock': '',
  1450. 'format': function() {
  1451. return {
  1452. type: 'DELETE',
  1453. async: false
  1454. };
  1455. }
  1456. },
  1457. 'wizard.step8.existing_cluster_names': {
  1458. 'real': '/clusters',
  1459. 'mock': '',
  1460. 'format': function() {
  1461. return {
  1462. async: false
  1463. };
  1464. }
  1465. },
  1466. 'wizard.step8.create_cluster': {
  1467. 'real':'/clusters/{cluster}',
  1468. 'mock':'',
  1469. 'format': function(data) {
  1470. return {
  1471. type: 'POST',
  1472. async: true,
  1473. dataType: 'text',
  1474. data: data.data
  1475. }
  1476. }
  1477. },
  1478. 'wizard.step8.create_selected_services': {
  1479. 'real':'/clusters/{cluster}/services',
  1480. 'mock':'',
  1481. 'format': function(data) {
  1482. return {
  1483. type: 'POST',
  1484. async: true,
  1485. dataType: 'text',
  1486. data: data.data
  1487. }
  1488. }
  1489. },
  1490. 'wizard.step8.create_components': {
  1491. 'real':'/clusters/{cluster}/services?ServiceInfo/service_name={serviceName}',
  1492. 'mock':'',
  1493. 'format': function(data) {
  1494. return {
  1495. type: 'POST',
  1496. async: true,
  1497. dataType: 'text',
  1498. data: data.data
  1499. }
  1500. }
  1501. },
  1502. 'wizard.step8.register_host_to_cluster': {
  1503. 'real':'/clusters/{cluster}/hosts',
  1504. 'mock':'',
  1505. 'format': function(data) {
  1506. return {
  1507. type: 'POST',
  1508. async: true,
  1509. dataType: 'text',
  1510. data: data.data
  1511. }
  1512. }
  1513. },
  1514. 'wizard.step8.register_host_to_component': {
  1515. 'real':'/clusters/{cluster}/hosts',
  1516. 'mock':'',
  1517. 'format': function(data) {
  1518. return {
  1519. type: 'POST',
  1520. async: true,
  1521. dataType: 'text',
  1522. data: data.data
  1523. }
  1524. }
  1525. },
  1526. 'wizard.step8.apply_configuration_to_cluster': {
  1527. 'real':'/clusters/{cluster}',
  1528. 'mock':'',
  1529. 'format': function(data) {
  1530. return {
  1531. type: 'PUT',
  1532. async: true,
  1533. dataType: 'text',
  1534. data: data.data
  1535. }
  1536. }
  1537. },
  1538. 'wizard.step8.apply_configuration_groups': {
  1539. 'real':'/clusters/{cluster}/config_groups',
  1540. 'mock':'',
  1541. 'format': function(data) {
  1542. return {
  1543. type: 'POST',
  1544. async: true,
  1545. dataType: 'text',
  1546. data: data.data
  1547. }
  1548. }
  1549. },
  1550. 'wizard.step8.set_local_repos': {
  1551. 'real':'{stackVersionURL}/operating_systems/{osType}/repositories/{repoId}',
  1552. 'mock':'',
  1553. 'format': function(data) {
  1554. return {
  1555. type: 'PUT',
  1556. async: true,
  1557. dataType: 'text',
  1558. data: data.data
  1559. }
  1560. }
  1561. },
  1562. 'wizard.step3.jdk_check': {
  1563. 'real': '/requests',
  1564. 'mock': '',
  1565. 'format': function (data) {
  1566. return {
  1567. type: 'POST',
  1568. data: JSON.stringify({
  1569. "RequestInfo": {
  1570. "context": "Check hosts",
  1571. "action": "check_host",
  1572. "parameters" : {
  1573. "threshold" : "60",
  1574. "java_home" : data.java_home,
  1575. "jdk_location": data.jdk_location,
  1576. "check_execute_list" : "java_home_check"
  1577. }
  1578. },
  1579. "Requests/resource_filters": [{
  1580. "hosts": data.host_names
  1581. }]
  1582. })
  1583. }
  1584. }
  1585. },
  1586. 'wizard.step3.jdk_check.get_results': {
  1587. 'real': '/requests/{requestIndex}?fields=*,tasks/Tasks/host_name,tasks/Tasks/status,tasks/Tasks/structured_out',
  1588. 'mock': '/data/requests/host_check/jdk_check_results.json'
  1589. },
  1590. 'wizard.step3.host_info': {
  1591. 'real': '/hosts?fields=Hosts/total_mem,Hosts/cpu_count,Hosts/disk_info,Hosts/last_agent_env,Hosts/host_name,Hosts/os_type,Hosts/os_arch,Hosts/ip',
  1592. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1593. 'format': function() {
  1594. return {
  1595. contentType: 'application/json'
  1596. };
  1597. }
  1598. },
  1599. 'preinstalled.checks': {
  1600. 'real':'/requests',
  1601. 'mock':'',
  1602. 'format': function(data) {
  1603. return {
  1604. type : 'POST',
  1605. data : JSON.stringify({
  1606. "RequestInfo": data.RequestInfo,
  1607. "Requests/resource_filters": [data.resource_filters]
  1608. })
  1609. }
  1610. }
  1611. },
  1612. 'preinstalled.checks.tasks': {
  1613. 'real':'/requests/{requestId}?fields=tasks/Tasks',
  1614. 'mock':'/data/requests/host_check/1.json'
  1615. },
  1616. 'wizard.step3.rerun_checks': {
  1617. 'real': '/hosts?fields=Hosts/last_agent_env',
  1618. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1619. 'format': function() {
  1620. return {
  1621. contentType: 'application/json'
  1622. };
  1623. }
  1624. },
  1625. 'wizard.step3.bootstrap': {
  1626. 'real': '/bootstrap/{bootRequestId}',
  1627. 'mock': '/data/wizard/bootstrap/poll_{numPolls}.json'
  1628. },
  1629. 'wizard.step3.is_hosts_registered': {
  1630. 'real': '/hosts',
  1631. 'mock': '/data/wizard/bootstrap/single_host_registration.json'
  1632. },
  1633. 'wizard.stacks': {
  1634. 'real': '/stacks',
  1635. 'mock': '/data/wizard/stack/stacks2.json',
  1636. 'format': function() {
  1637. return {
  1638. async: false
  1639. };
  1640. }
  1641. },
  1642. 'wizard.stacks_versions': {
  1643. 'real': '/stacks/{stackName}/versions?fields=Versions,operatingSystems/repositories/Repositories',
  1644. 'mock': '/data/wizard/stack/{stackName}_versions.json',
  1645. 'format': function() {
  1646. return {
  1647. async: false
  1648. };
  1649. }
  1650. },
  1651. 'wizard.launch_bootstrap': {
  1652. 'real': '/bootstrap',
  1653. 'mock': '/data/wizard/bootstrap/bootstrap.json',
  1654. 'type': 'POST',
  1655. 'format': function (data) {
  1656. return {
  1657. contentType: 'application/json',
  1658. data: data.bootStrapData,
  1659. popup: data.popup
  1660. }
  1661. }
  1662. },
  1663. 'router.login': {
  1664. 'real': '/users/{loginName}',
  1665. 'mock': '/data/users/user_{usr}.json',
  1666. 'format': function (data) {
  1667. var statusCode = jQuery.extend({}, require('data/statusCodes'));
  1668. statusCode['403'] = function () {
  1669. console.log("Error code 403: Forbidden.");
  1670. };
  1671. return {
  1672. statusCode: statusCode
  1673. };
  1674. }
  1675. },
  1676. 'router.login2': {
  1677. 'real': '/clusters',
  1678. 'mock': '/data/clusters/info.json'
  1679. },
  1680. 'router.logoff': {
  1681. 'real': '/logout',
  1682. 'mock': ''
  1683. },
  1684. 'router.set_ambari_stacks': {
  1685. 'real': '/stacks',
  1686. 'mock': '/data/wizard/stack/stacks.json',
  1687. 'format': function() {
  1688. return {
  1689. async: false
  1690. };
  1691. }
  1692. },
  1693. 'router.authentication': {
  1694. 'real': '/clusters',
  1695. 'mock': '/data/clusters/info.json',
  1696. 'format': function() {
  1697. return {
  1698. async: false
  1699. };
  1700. }
  1701. },
  1702. 'ambari.service.load_jdk_name': {
  1703. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/properties/jdk.name,RootServiceComponents/properties/java.home,RootServiceComponents/properties/jdk_location',
  1704. 'mock': '/data/requests/host_check/jdk_name.json'
  1705. },
  1706. 'ambari.service.load_server_version': {
  1707. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/component_version',
  1708. 'mock': ''
  1709. },
  1710. 'ambari.service': {
  1711. 'real': '/services/AMBARI/components/AMBARI_SERVER',
  1712. 'mock': '/data/services/ambari_server.json'
  1713. },
  1714. 'ambari.service.load_server_clock': {
  1715. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/server_clock',
  1716. 'mock': ''
  1717. },
  1718. 'config_groups.create': {
  1719. 'real': '/clusters/{clusterName}/config_groups',
  1720. 'mock': '',
  1721. 'format': function (data) {
  1722. return {
  1723. async: false,
  1724. type: 'POST',
  1725. data: JSON.stringify([{
  1726. "ConfigGroup": {
  1727. "group_name": data.group_name,
  1728. "tag": data.service_id,
  1729. "description": data.description,
  1730. "desired_configs": data.desired_configs,
  1731. "hosts": data.hosts
  1732. }
  1733. }])
  1734. }
  1735. }
  1736. },
  1737. 'config_groups.update': {
  1738. 'real': '/clusters/{clusterName}/config_groups/{id}',
  1739. 'mock': '',
  1740. 'format': function (data) {
  1741. return {
  1742. async: true,
  1743. type: 'PUT',
  1744. data: JSON.stringify(data.data)
  1745. }
  1746. }
  1747. },
  1748. 'rolling_restart.post': {
  1749. 'real': '/clusters/{clusterName}/request_schedules',
  1750. 'mock': '',
  1751. 'format' : function(data) {
  1752. return {
  1753. type : 'POST',
  1754. data : JSON.stringify([ {
  1755. "RequestSchedule" : {
  1756. "batch" : [ {
  1757. "requests" : data.batches
  1758. }, {
  1759. "batch_settings" : {
  1760. "batch_separation_in_seconds" : data.intervalTimeSeconds,
  1761. "task_failure_tolerance" : data.tolerateSize
  1762. }
  1763. } ]
  1764. }
  1765. } ])
  1766. }
  1767. }
  1768. },
  1769. 'request_schedule.delete': {
  1770. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  1771. 'mock': '',
  1772. 'format' : function() {
  1773. return {
  1774. type : 'DELETE'
  1775. }
  1776. }
  1777. },
  1778. 'request_schedule.get': {
  1779. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  1780. 'mock': ''
  1781. },
  1782. 'restart.hostComponents': {
  1783. 'real':'/clusters/{clusterName}/requests',
  1784. 'mock':'',
  1785. 'format': function(data) {
  1786. return {
  1787. type : 'POST',
  1788. data : JSON.stringify({
  1789. "RequestInfo": {
  1790. "command": "RESTART",
  1791. "context": data.context,
  1792. "operation_level": data.operation_level
  1793. },
  1794. "Requests/resource_filters": data.resource_filters
  1795. })
  1796. }
  1797. }
  1798. },
  1799. 'mirroring.get_all_entities': {
  1800. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/list/{type}?fields=status&user.name=ambari-qa',
  1801. 'mock': '/data/mirroring/{type}s.xml',
  1802. 'apiPrefix': '',
  1803. 'format': function () {
  1804. return {
  1805. dataType: 'xml'
  1806. }
  1807. }
  1808. },
  1809. 'mirroring.get_definition': {
  1810. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/definition/{type}/{name}?user.name=ambari-qa',
  1811. 'mock': '/data/mirroring/{name}_definition.xml',
  1812. 'apiPrefix': '',
  1813. 'format': function () {
  1814. return {
  1815. cache: true,
  1816. dataType: 'xml'
  1817. }
  1818. }
  1819. },
  1820. 'mirroring.dataset.get_all_instances': {
  1821. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/status/feed/{dataset}?start={start}&end={end}&user.name=ambari-qa',
  1822. 'mock': '/data/mirroring/{dataset}_instances.json',
  1823. 'apiPrefix': ''
  1824. },
  1825. 'mirroring.create_new_dataset': {
  1826. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/submitAndSchedule/feed?user.name=ambari-qa',
  1827. 'mock': '/data/mirroring/succeeded.json',
  1828. 'apiPrefix': '',
  1829. 'type': 'POST',
  1830. 'format': function (data) {
  1831. return {
  1832. contentType: 'text/xml',
  1833. dataType: 'xml',
  1834. data: data.entity,
  1835. headers: {
  1836. 'AmbariProxy-Content-Type': 'text/xml'
  1837. }
  1838. }
  1839. }
  1840. },
  1841. 'mirroring.submit_entity': {
  1842. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/submit/{type}?user.name=ambari-qa',
  1843. 'mock': '/data/mirroring/succeeded.json',
  1844. 'apiPrefix': '',
  1845. 'type': 'POST',
  1846. 'format': function (data) {
  1847. return {
  1848. contentType: 'text/xml',
  1849. dataType: 'xml',
  1850. data: data.entity,
  1851. headers: {
  1852. 'AmbariProxy-Content-Type': 'text/xml'
  1853. }
  1854. }
  1855. }
  1856. },
  1857. 'mirroring.update_entity': {
  1858. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/update/{type}/{name}?user.name=ambari-qa',
  1859. 'mock': '/data/mirroring/succeeded.json',
  1860. 'apiPrefix': '',
  1861. 'type': 'POST',
  1862. 'format': function (data) {
  1863. return {
  1864. contentType: 'text/xml',
  1865. dataType: 'xml',
  1866. data: data.entity,
  1867. headers: {
  1868. 'AmbariProxy-Content-Type': 'text/xml'
  1869. }
  1870. }
  1871. }
  1872. },
  1873. 'mirroring.delete_entity': {
  1874. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/delete/{type}/{name}?user.name=ambari-qa',
  1875. 'mock': '/data/mirroring/succeeded.json',
  1876. 'apiPrefix': '',
  1877. 'type': 'DELETE',
  1878. 'format': function () {
  1879. return {
  1880. dataType: 'xml'
  1881. }
  1882. }
  1883. },
  1884. 'mirroring.suspend_entity': {
  1885. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/suspend/{type}/{name}?user.name=ambari-qa',
  1886. 'mock': '/data/mirroring/succeeded.json',
  1887. 'apiPrefix': '',
  1888. 'type': 'POST',
  1889. 'format': function (data) {
  1890. return {
  1891. dataType: 'xml',
  1892. data: data.entity
  1893. }
  1894. }
  1895. },
  1896. 'mirroring.resume_entity': {
  1897. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/resume/{type}/{name}?user.name=ambari-qa',
  1898. 'mock': '/data/mirroring/succeeded.json',
  1899. 'apiPrefix': '',
  1900. 'type': 'POST',
  1901. 'format': function () {
  1902. return {
  1903. dataType: 'xml'
  1904. }
  1905. }
  1906. },
  1907. 'mirroring.schedule_entity': {
  1908. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/schedule/{type}/{name}?user.name=ambari-qa',
  1909. 'mock': '/data/mirroring/succeeded.json',
  1910. 'apiPrefix': '',
  1911. 'type': 'POST',
  1912. 'format': function () {
  1913. return {
  1914. dataType: 'xml'
  1915. }
  1916. }
  1917. },
  1918. 'mirroring.suspend_instance': {
  1919. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/suspend/feed/{feed}?start={name}&user.name=ambari-qa',
  1920. 'mock': '/data/mirroring/succeeded.json',
  1921. 'apiPrefix': '',
  1922. 'type': 'POST'
  1923. },
  1924. 'mirroring.resume_instance': {
  1925. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/resume/feed/{feed}?start={name}&user.name=ambari-qa',
  1926. 'mock': '/data/mirroring/succeeded.json',
  1927. 'apiPrefix': '',
  1928. 'type': 'POST'
  1929. },
  1930. 'mirroring.kill_instance': {
  1931. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/kill/feed/{feed}?start={name}&user.name=ambari-qa',
  1932. 'mock': '/data/mirroring/succeeded.json',
  1933. 'apiPrefix': '',
  1934. 'type': 'POST'
  1935. },
  1936. 'bulk_request.host_components': {
  1937. 'real': '/clusters/{clusterName}/host_components',
  1938. 'mock': '',
  1939. 'format': function(data) {
  1940. return {
  1941. type: 'PUT',
  1942. data: JSON.stringify({
  1943. RequestInfo: {
  1944. context: data.requestInfo,
  1945. query: 'HostRoles/component_name=' + data.componentName + '&HostRoles/host_name.in(' + data.hostNames + ')&HostRoles/maintenance_state=OFF'
  1946. },
  1947. Body: {
  1948. HostRoles: {
  1949. state: data.state
  1950. }
  1951. }
  1952. })
  1953. }
  1954. }
  1955. },
  1956. 'bulk_request.hosts.all_components': {
  1957. 'real': '/clusters/{clusterName}/host_components',
  1958. 'mock': '',
  1959. 'format': function(data) {
  1960. return {
  1961. type: 'PUT',
  1962. data: JSON.stringify({
  1963. RequestInfo: {
  1964. context: data.requestInfo,
  1965. query: data.query,
  1966. operation_level: {
  1967. level: "HOST",
  1968. cluster_name: data.clusterName,
  1969. host_name: data.hostName
  1970. }
  1971. },
  1972. Body: {
  1973. HostRoles: {
  1974. state: data.state
  1975. }
  1976. }
  1977. })
  1978. }
  1979. }
  1980. },
  1981. 'bulk_request.decommission': {
  1982. 'real' : '/clusters/{clusterName}/requests',
  1983. 'mock' : '',
  1984. 'format': function(data) {
  1985. return {
  1986. type: 'POST',
  1987. data: JSON.stringify({
  1988. 'RequestInfo': {
  1989. 'context': data.context,
  1990. 'command': 'DECOMMISSION',
  1991. 'parameters': data.parameters
  1992. },
  1993. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  1994. })
  1995. }
  1996. }
  1997. },
  1998. 'bulk_request.hosts.passive_state': {
  1999. 'real': '/clusters/{clusterName}/hosts',
  2000. 'mock': '',
  2001. 'format': function(data) {
  2002. return {
  2003. type: 'PUT',
  2004. data: JSON.stringify({
  2005. RequestInfo: {
  2006. context: data.requestInfo,
  2007. query: 'Hosts/host_name.in(' + data.hostNames + ')'
  2008. },
  2009. Body: {
  2010. Hosts: {
  2011. maintenance_state: data.passive_state
  2012. }
  2013. }
  2014. })
  2015. }
  2016. }
  2017. },
  2018. 'bulk_request.hosts.all_components.passive_state': {
  2019. 'real': '/clusters/{clusterName}/host_components',
  2020. 'mock': '',
  2021. 'format': function(data) {
  2022. return {
  2023. type: 'PUT',
  2024. data: JSON.stringify({
  2025. RequestInfo: {
  2026. context: data.requestInfo,
  2027. query: data.query
  2028. },
  2029. Body: {
  2030. HostRoles: {
  2031. maintenance_state: data.passive_state
  2032. }
  2033. }
  2034. })
  2035. }
  2036. }
  2037. },
  2038. 'jobs.lastID': {
  2039. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/HIVE_QUERY_ID?limit=1&secondaryFilter=tez:true',
  2040. 'mock': 'data/jobs/hive-queries.json',
  2041. 'apiPrefix': ''
  2042. },
  2043. 'jobs.tezDag.NametoID': {
  2044. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_DAG_ID?primaryFilter=dagName:{tezDagName}',
  2045. 'mock': '/data/jobs/tezDag-name-to-id.json',
  2046. 'apiPrefix': ''
  2047. },
  2048. 'jobs.tezDag.tezDagId': {
  2049. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_DAG_ID/{tezDagId}?fields=relatedentities,otherinfo',
  2050. 'mock': '/data/jobs/tezDag.json',
  2051. 'apiPrefix': ''
  2052. },
  2053. 'jobs.tezDag.tezDagVertexId': {
  2054. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_VERTEX_ID/{tezDagVertexId}?fields=otherinfo',
  2055. 'mock': '/data/jobs/tezDagVertex.json',
  2056. 'apiPrefix': ''
  2057. },
  2058. 'views.info': {
  2059. 'real': '/views',
  2060. 'mock':''
  2061. },
  2062. /**
  2063. * Get all instances of {viewName} across versions
  2064. * @param {String} viewName
  2065. */
  2066. 'views.instances': {
  2067. 'real': '/views/{viewName}?fields=versions/instances',
  2068. 'mock':''
  2069. },
  2070. 'host.host_component.flume.metrics': {
  2071. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/FLUME_HANDLER?fields=metrics/flume/flume/{flumeComponent}/*',
  2072. 'mock': '',
  2073. 'format': function(data) {
  2074. return {
  2075. async: data.async
  2076. }
  2077. }
  2078. },
  2079. 'host.host_component.flume.metrics.timeseries': {
  2080. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/FLUME_HANDLER?fields=metrics/flume/flume/{flumeComponent}/*/{flumeComponentMetric}[{fromSeconds},{toSeconds},{stepSeconds}]',
  2081. 'mock': ''
  2082. },
  2083. 'host.host_components.filtered': {
  2084. 'real': '/clusters/{clusterName}/hosts',
  2085. 'mock': '',
  2086. format: function(data, opt) {
  2087. return {
  2088. url: opt.url + data.urlParams
  2089. }
  2090. }
  2091. },
  2092. 'host.status.counters': {
  2093. 'real': '/clusters/{clusterName}?fields=alerts,Clusters/health_report,Clusters/total_hosts&minimal_response=true',
  2094. 'mock': '/data/hosts/HDP2/host_status_counters.json'
  2095. },
  2096. 'components.filter_by_status': {
  2097. 'real': '/clusters/{clusterName}/components?fields=host_components/HostRoles/host_name,ServiceComponentInfo/component_name,ServiceComponentInfo/started_count{urlParams}&minimal_response=true',
  2098. 'mock': ''
  2099. },
  2100. 'hosts.all.install': {
  2101. 'real': '/hosts?minimal_response=true',
  2102. 'mock': ''
  2103. },
  2104. 'hosts.all': {
  2105. 'real': '/clusters/{clusterName}/hosts?minimal_response=true',
  2106. 'mock': ''
  2107. },
  2108. 'hosts.with_public_host_names': {
  2109. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/public_host_name&minimal_response=true',
  2110. 'mock': ''
  2111. },
  2112. 'hosts.for_quick_links': {
  2113. 'real': '/clusters/{clusterName}/hosts?host_components/HostRoles/component_name.in({masterComponents})&fields=Hosts/public_host_name,host_components/HostRoles/component_name{urlParams}&minimal_response=true',
  2114. 'mock': ''
  2115. },
  2116. 'hosts.confirmed.install': {
  2117. 'real': '/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem&minimal_response=true',
  2118. 'mock': ''
  2119. },
  2120. 'hosts.confirmed': {
  2121. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem,host_components&minimal_response=true',
  2122. 'mock': ''
  2123. },
  2124. 'host_components.all': {
  2125. 'real': '/clusters/{clusterName}/host_components?fields=HostRoles/host_name&minimal_response=true',
  2126. 'mock': ''
  2127. },
  2128. 'host_components.with_services_names': {
  2129. 'real': '/clusters/{clusterName}/host_components?fields=component/ServiceComponentInfo/service_name,HostRoles/host_name&minimal_response=true',
  2130. 'mock': ''
  2131. },
  2132. 'components.get_installed': {
  2133. 'real': '/clusters/{clusterName}/components',
  2134. 'mock': ''
  2135. },
  2136. 'hosts.heatmaps': {
  2137. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/host_name,Hosts/maintenance_state,Hosts/public_host_name,Hosts/cpu_count,Hosts/ph_cpu_count,Hosts/total_mem,Hosts/host_status,Hosts/last_heartbeat_time,Hosts/os_arch,Hosts/os_type,Hosts/ip,host_components/HostRoles/service_name,host_components/HostRoles/state,host_components/HostRoles/maintenance_state,Hosts/disk_info,metrics/disk,metrics/load/load_one,metrics/cpu/cpu_system,metrics/cpu/cpu_user,metrics/memory/mem_total,metrics/memory/mem_free,alerts/summary&minimal_response=true',
  2138. 'mock': ''
  2139. },
  2140. 'custom_action.create': {
  2141. 'real': '/requests',
  2142. 'mock': '',
  2143. 'format': function(data) {
  2144. var requestInfo = {
  2145. context: 'Check host',
  2146. action: 'check_host',
  2147. parameters: { }
  2148. };
  2149. $.extend(true, requestInfo, data.requestInfo)
  2150. return {
  2151. type: 'POST',
  2152. async: true,
  2153. data: JSON.stringify({
  2154. 'RequestInfo': requestInfo,
  2155. 'Requests/resource_filters': [{
  2156. hosts: data.filteredHosts.join(',')
  2157. }]
  2158. })
  2159. }
  2160. }
  2161. },
  2162. 'custom_action.request': {
  2163. 'real': '/requests/{requestId}/tasks/{taskId}',
  2164. 'mock': '',
  2165. 'format': function(data) {
  2166. return {
  2167. async: true,
  2168. requestId: data.requestId,
  2169. taskId: data.taskId || ''
  2170. }
  2171. }
  2172. },
  2173. 'hosts.total_count': {
  2174. 'real': '/clusters/{clusterName}?fields=Clusters/total_hosts&minimal_response=true',
  2175. 'mock': '',
  2176. 'format': function() {
  2177. return {
  2178. async: false
  2179. }
  2180. }
  2181. },
  2182. 'hosts.high_availability.wizard': {
  2183. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem&minimal_response=true',
  2184. 'mock': ''
  2185. },
  2186. 'hosts.security.wizard': {
  2187. 'real': '/clusters/{clusterName}/hosts?fields=host_components/HostRoles/service_name&minimal_response=true',
  2188. 'mock': ''
  2189. },
  2190. 'host_component.installed.on_hosts': {
  2191. 'real': '/clusters/{clusterName}/host_components?HostRoles/component_name={componentName}&HostRoles/host_name.in({hostNames})&fields=HostRoles/host_name&minimal_response=true',
  2192. 'mock': '',
  2193. 'format': function() {
  2194. return {
  2195. async: false
  2196. }
  2197. }
  2198. }
  2199. };
  2200. /**
  2201. * Replace data-placeholders to its values
  2202. *
  2203. * @param {String} url
  2204. * @param {Object} data
  2205. * @return {String}
  2206. */
  2207. var formatUrl = function (url, data) {
  2208. if (!url) return null;
  2209. var keys = url.match(/\{\w+\}/g);
  2210. keys = (keys === null) ? [] : keys;
  2211. if (keys) {
  2212. keys.forEach(function (key) {
  2213. var raw_key = key.substr(1, key.length - 2);
  2214. var replace;
  2215. if (!data || !data[raw_key]) {
  2216. replace = '';
  2217. }
  2218. else {
  2219. replace = data[raw_key];
  2220. }
  2221. url = url.replace(new RegExp(key, 'g'), replace);
  2222. });
  2223. }
  2224. return url;
  2225. };
  2226. /**
  2227. * this = object from config
  2228. * @return {Object}
  2229. */
  2230. var formatRequest = function (data) {
  2231. var opt = {
  2232. type: this.type || 'GET',
  2233. timeout: App.timeout,
  2234. dataType: 'json',
  2235. statusCode: require('data/statusCodes')
  2236. };
  2237. if (App.testMode) {
  2238. opt.url = formatUrl(this.mock ? this.mock : '', data);
  2239. opt.type = 'GET';
  2240. }
  2241. else {
  2242. var prefix = this.apiPrefix != null ? this.apiPrefix : App.apiPrefix;
  2243. opt.url = prefix + formatUrl(this.real, data);
  2244. }
  2245. if (this.format) {
  2246. jQuery.extend(opt, this.format(data, opt));
  2247. }
  2248. return opt;
  2249. };
  2250. /**
  2251. * Wrapper for all ajax requests
  2252. *
  2253. * @type {Object}
  2254. */
  2255. var ajax = Em.Object.extend({
  2256. /**
  2257. * Send ajax request
  2258. *
  2259. * @param {Object} config
  2260. * @return {$.ajax} jquery ajax object
  2261. *
  2262. * config fields:
  2263. * name - url-key in the urls-object *required*
  2264. * sender - object that send request (need for proper callback initialization) *required*
  2265. * data - object with data for url-format
  2266. * beforeSend - method-name for ajax beforeSend response callback
  2267. * success - method-name for ajax success response callback
  2268. * error - method-name for ajax error response callback
  2269. * callback - callback from <code>App.updater.run</code> library
  2270. */
  2271. send: function (config) {
  2272. console.warn('============== ajax ==============', config.name, config.data);
  2273. if (!config.sender) {
  2274. console.warn('Ajax sender should be defined!');
  2275. return null;
  2276. }
  2277. // default parameters
  2278. var params = {
  2279. clusterName: App.get('clusterName')
  2280. };
  2281. // extend default parameters with provided
  2282. if (config.data) {
  2283. jQuery.extend(params, config.data);
  2284. }
  2285. var opt = {};
  2286. if (!urls[config.name]) {
  2287. console.warn('Invalid name provided!');
  2288. return null;
  2289. }
  2290. opt = formatRequest.call(urls[config.name], params);
  2291. opt.context = this;
  2292. // object sender should be provided for processing beforeSend, success and error responses
  2293. opt.beforeSend = function (xhr) {
  2294. if (config.beforeSend) {
  2295. config.sender[config.beforeSend](opt, xhr, params);
  2296. }
  2297. };
  2298. opt.success = function (data) {
  2299. console.log("TRACE: The url is: " + opt.url);
  2300. if (config.success) {
  2301. config.sender[config.success](data, opt, params);
  2302. }
  2303. };
  2304. opt.error = function (request, ajaxOptions, error) {
  2305. if (config.error) {
  2306. config.sender[config.error](request, ajaxOptions, error, opt, params);
  2307. } else {
  2308. this.defaultErrorHandler(request, opt.url, opt.type);
  2309. }
  2310. };
  2311. opt.complete = function () {
  2312. if (config.callback) {
  2313. config.callback();
  2314. }
  2315. };
  2316. if ($.mocho) {
  2317. opt.url = 'http://' + $.hostName + opt.url;
  2318. }
  2319. return $.ajax(opt);
  2320. },
  2321. // A single instance of App.ModalPopup view
  2322. modalPopup: null,
  2323. /**
  2324. * defaultErrorHandler function is referred from App.ajax.send function and App.HttpClient.defaultErrorHandler function
  2325. * @jqXHR {jqXHR Object}
  2326. * @url {string}
  2327. * @method {String} Http method
  2328. * @showStatus {number} HTTP response code which should be shown. Default is 500.
  2329. */
  2330. defaultErrorHandler: function (jqXHR, url, method, showStatus) {
  2331. method = method || 'GET';
  2332. var self = this;
  2333. var api = " received on " + method + " method for API: " + url;
  2334. try {
  2335. var json = $.parseJSON(jqXHR.responseText);
  2336. var message = json.message;
  2337. } catch (err) {
  2338. }
  2339. if (!showStatus) {
  2340. showStatus = 500;
  2341. }
  2342. var statusCode = jqXHR.status + " status code";
  2343. if (jqXHR.status === showStatus && !this.modalPopup) {
  2344. this.modalPopup = App.ModalPopup.show({
  2345. header: jqXHR.statusText,
  2346. secondary: false,
  2347. onPrimary: function () {
  2348. this.hide();
  2349. self.modalPopup = null;
  2350. },
  2351. bodyClass: Ember.View.extend({
  2352. classNames: ['api-error'],
  2353. templateName: require('templates/utils/ajax'),
  2354. api: api,
  2355. statusCode: statusCode,
  2356. message: message,
  2357. showMessage: !!message
  2358. })
  2359. });
  2360. }
  2361. }
  2362. });
  2363. /**
  2364. * Add few access-methods for test purposes
  2365. */
  2366. if ($.mocho) {
  2367. ajax.reopen({
  2368. /**
  2369. * Don't use it anywhere except tests!
  2370. * @returns {Array}
  2371. */
  2372. fakeGetUrlNames: function() {
  2373. return Em.keys(urls);
  2374. },
  2375. /**
  2376. * Don't use it anywhere except tests!
  2377. * @param name
  2378. * @returns {*}
  2379. */
  2380. fakeGetUrl: function(name) {
  2381. return urls[name];
  2382. },
  2383. /**
  2384. * Don't use it anywhere except tests!
  2385. * @param url
  2386. * @param data
  2387. * @returns {String}
  2388. */
  2389. fakeFormatUrl: function(url, data) {
  2390. return formatUrl(url, data);
  2391. },
  2392. /**
  2393. * Don't use it anywhere except tests!
  2394. * @param urlObj
  2395. * @param data
  2396. * @returns {Object}
  2397. */
  2398. fakeFormatRequest: function(urlObj, data) {
  2399. return formatRequest.call(urlObj, data);
  2400. }
  2401. });
  2402. }
  2403. App.ajax = ajax.create({});