ajax.js 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  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': '{stack2VersionUrl}/stackServices/{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': '{stack2VersionUrl}/stackServices?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/*',
  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_groups.all_fields': {
  355. 'real': '/clusters/{clusterName}/config_groups?fields=*',
  356. 'mock': ''
  357. },
  358. 'config_groups.get_config_group_by_id': {
  359. 'real': '/clusters/{clusterName}/config_groups/{id}',
  360. 'mock': ''
  361. },
  362. 'config_groups.update_config_group': {
  363. 'real': '/clusters/{clusterName}/config_groups/{id}',
  364. 'mock': '',
  365. 'type': 'PUT',
  366. 'format': function (data) {
  367. return {
  368. async: false,
  369. data: JSON.stringify(
  370. [
  371. data.configGroup
  372. ]
  373. )
  374. }
  375. }
  376. },
  377. 'config_groups.delete_config_group': {
  378. 'real': '/clusters/{clusterName}/config_groups/{id}',
  379. 'mock': '',
  380. 'type': 'DELETE'
  381. },
  382. 'config.on_site': {
  383. 'real': '/clusters/{clusterName}/configurations?{params}',
  384. 'mock': '/data/configurations/cluster_level_configs.json?{params}',
  385. 'format': function() {
  386. return {
  387. async: false
  388. };
  389. }
  390. },
  391. 'config.host_overrides': {
  392. 'real': '/clusters/{clusterName}/configurations?{params}',
  393. 'mock': '/data/configurations/host_level_overrides_configs.json?{params}',
  394. 'format': function() {
  395. return {
  396. async: false
  397. };
  398. }
  399. },
  400. 'host.host_component.delete': {
  401. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  402. 'mock': '',
  403. 'format': function() {
  404. return {
  405. type: 'DELETE',
  406. async: false
  407. }
  408. }
  409. },
  410. 'host.host_components.delete': {
  411. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  412. 'mock': '',
  413. 'format': function() {
  414. return {
  415. type: 'DELETE',
  416. async: false
  417. }
  418. }
  419. },
  420. 'host.host_component.stop': {
  421. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  422. 'mock': '/data/wizard/deploy/poll_1.json',
  423. 'format': function(data) {
  424. return {
  425. type: 'PUT',
  426. data: data.data
  427. }
  428. }
  429. },
  430. 'host.host_components.stop': {
  431. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components',
  432. 'mock': '/data/wizard/deploy/poll_1.json',
  433. 'format': function(data) {
  434. return {
  435. type: 'PUT',
  436. async: false,
  437. data: data.data
  438. }
  439. }
  440. },
  441. 'host.host_component.start': {
  442. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  443. 'mock': '/data/wizard/deploy/poll_1.json',
  444. 'format': function(data) {
  445. return {
  446. type: 'PUT',
  447. data: data.data
  448. }
  449. }
  450. },
  451. 'host.host_component.install': {
  452. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  453. 'mock': '/data/wizard/deploy/poll_1.json',
  454. 'format': function(data) {
  455. return {
  456. type: 'PUT',
  457. data: data.data
  458. }
  459. }
  460. },
  461. 'host.host_component.update': {
  462. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  463. 'mock': '/data/wizard/deploy/poll_1.json',
  464. 'format': function(data) {
  465. return {
  466. type: 'PUT',
  467. data: data.data
  468. }
  469. }
  470. },
  471. 'host.host_component.add_new_component': {
  472. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  473. 'mock': '/data/wizard/deploy/poll_1.json',
  474. 'format': function(data) {
  475. return {
  476. type: 'POST',
  477. data: data.data
  478. }
  479. }
  480. },
  481. 'host.host_component.install_new_component': {
  482. 'real': '/clusters/{clusterName}/host_components?HostRoles/host_name={hostName}\&HostRoles/component_name={componentName}\&HostRoles/state=INIT',
  483. 'mock': '/data/wizard/deploy/poll_1.json',
  484. 'format': function(data) {
  485. return {
  486. type: 'PUT',
  487. data: data.data
  488. }
  489. }
  490. },
  491. 'host.host_component.slave_desired_admin_state': {
  492. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}/?fields=HostRoles/desired_admin_state',
  493. 'mock': ''
  494. },
  495. 'host.host_component.decommission_status': {
  496. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}/?fields=ServiceComponentInfo',
  497. 'mock': ''
  498. },
  499. 'host.host_component.decommission_status_datanode': {
  500. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}?fields=metrics/dfs/namenode',
  501. 'mock': ''
  502. },
  503. 'host.host_component.decommission_slave': {
  504. 'real' : '/clusters/{clusterName}/requests',
  505. 'mock' : '',
  506. 'format' : function(data) {
  507. return {
  508. type : 'POST',
  509. data : JSON.stringify({
  510. RequestInfo: {
  511. 'context': data.context,
  512. 'command': data.command,
  513. 'parameters': {
  514. 'slave_type': data.slaveType,
  515. 'excluded_hosts': data.hostName
  516. }
  517. },
  518. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  519. })
  520. }
  521. }
  522. },
  523. 'host.host_component.recommission_and_restart': {
  524. 'real': '/clusters/{clusterName}/request_schedules',
  525. 'mock': '',
  526. 'format' : function(data) {
  527. return {
  528. type : 'POST',
  529. data : JSON.stringify([ {
  530. "RequestSchedule" : {
  531. "batch" : [ {
  532. "requests" : data.batches
  533. }, {
  534. "batch_settings" : {
  535. "batch_separation_in_seconds" : data.intervalTimeSeconds,
  536. "task_failure_tolerance" : data.tolerateSize
  537. }
  538. } ]
  539. }
  540. } ])
  541. }
  542. }
  543. },
  544. 'host.host_component.recommission_slave' : {
  545. 'real' : '/clusters/{clusterName}/requests',
  546. 'mock' : '',
  547. 'format' : function(data) {
  548. return {
  549. type : 'POST',
  550. data : JSON.stringify({
  551. RequestInfo: {
  552. context: data.context,
  553. command: data.command,
  554. parameters: {
  555. slave_type: data.slaveType,
  556. included_hosts: data.hostName
  557. }
  558. },
  559. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  560. })
  561. }
  562. }
  563. },
  564. 'host.stale_host_components.start_stop': {
  565. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components?HostRoles/stale_configs=true&' +
  566. 'HostRoles/component_name.in({componentNames})',
  567. 'mock': '',
  568. 'type': 'PUT',
  569. 'format': function (data) {
  570. return {
  571. data: JSON.stringify({
  572. RequestInfo: {
  573. "context": data.context
  574. },
  575. Body: {
  576. "HostRoles": {
  577. "state": data.state
  578. }
  579. }
  580. })
  581. }
  582. }
  583. },
  584. 'host.host_component.refresh_configs': {
  585. 'real':'/clusters/{clusterName}/requests',
  586. 'mock':'',
  587. 'format': function(data) {
  588. return {
  589. type : 'POST',
  590. data : JSON.stringify({
  591. "RequestInfo": {
  592. "command": "CONFIGURE",
  593. "context": data.context
  594. },
  595. "Requests/resource_filters": data.resource_filters
  596. })
  597. }
  598. }
  599. },
  600. 'host.delete': {
  601. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  602. 'mock': '',
  603. 'type': 'DELETE',
  604. 'format': function() {
  605. return {
  606. async: false
  607. }
  608. }
  609. },
  610. 'hosts.metrics': {
  611. 'real': '/clusters/{clusterName}/hosts?fields={metricName}',
  612. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  613. },
  614. 'hosts.metrics.host_component': {
  615. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?fields=host_components/{metricName}',
  616. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  617. },
  618. 'service.service_component': {
  619. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}',
  620. 'mock': '',
  621. 'format': function(data) {
  622. return {
  623. async: data.async
  624. };
  625. }
  626. },
  627. 'service.metrics.flume.channel_fill_percent': {
  628. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/*/ChannelFillPercentage[{fromSeconds},{toSeconds},{stepSeconds}]',
  629. 'mock': '/data/services/metrics/flume/channelFillPct.json',
  630. 'testInProduction': true
  631. },
  632. 'service.metrics.flume.channel_size': {
  633. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/*/ChannelSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  634. 'mock': '/data/services/metrics/flume/channelSize.json',
  635. 'testInProduction': true
  636. },
  637. 'service.metrics.flume.sink_drain_success': {
  638. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/*/EventDrainSuccessCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  639. 'mock': '/data/services/metrics/flume/sinkDrainSuccessCount.json',
  640. 'testInProduction': true
  641. },
  642. 'service.metrics.flume.sink_connection_failed': {
  643. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/*/ConnectionFailedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  644. 'mock': '/data/services/metrics/flume/sinkConnectionFailedCount.json',
  645. 'testInProduction': true
  646. },
  647. 'service.metrics.flume.gc': {
  648. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  649. 'mock': '/data/services/metrics/flume/jvmGcTime.json',
  650. 'testInProduction': true
  651. },
  652. 'service.metrics.flume.jvm_heap_used': {
  653. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  654. 'mock': '/data/services/metrics/flume/jvmMemHeapUsedM.json',
  655. 'testInProduction': true
  656. },
  657. 'service.metrics.flume.jvm_threads_runnable': {
  658. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}]',
  659. 'mock': '/data/services/metrics/flume/jvmThreadsRunnable.json',
  660. 'testInProduction': true
  661. },
  662. 'service.metrics.flume.cpu_user': {
  663. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/cpu/cpu_user[{fromSeconds},{toSeconds},{stepSeconds}]',
  664. 'mock': '',
  665. 'testInProduction': true
  666. },
  667. 'service.metrics.flume.source_accepted': {
  668. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SOURCE/*/EventAcceptedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  669. 'mock': '/data/services/metrics/flume/sourceEventAccepted.json',
  670. 'testInProduction': true
  671. },
  672. 'service.metrics.hbase.cluster_requests': {
  673. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/cluster_requests[{fromSeconds},{toSeconds},{stepSeconds}]',
  674. 'mock': '/data/services/metrics/hbase/cluster_requests.json',
  675. 'testInProduction': true
  676. },
  677. 'service.metrics.hbase.hlog_split_size': {
  678. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitSize_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  679. 'mock': '/data/services/metrics/hbase/hlog_split_size.json',
  680. 'testInProduction': true
  681. },
  682. 'service.metrics.hbase.hlog_split_time': {
  683. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  684. 'mock': '/data/services/metrics/hbase/hlog_split_time.json',
  685. 'testInProduction': true
  686. },
  687. 'service.metrics.hbase.regionserver_queuesize': {
  688. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/flushQueueSize[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/compactionQueueSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  689. 'mock': '/data/services/metrics/hbase/regionserver_queuesize.json',
  690. 'testInProduction': true
  691. },
  692. 'service.metrics.hbase.regionserver_regions': {
  693. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/regions[{fromSeconds},{toSeconds},{stepSeconds}]',
  694. 'mock': '/data/services/metrics/hbase/regionserver_regions.json',
  695. 'testInProduction': true
  696. },
  697. 'service.metrics.hbase.regionserver_rw_requests': {
  698. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/readRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/writeRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  699. 'mock': '/data/services/metrics/hbase/regionserver_rw_requests.json',
  700. 'testInProduction': true
  701. },
  702. 'service.metrics.mapreduce.gc': {
  703. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  704. 'mock': '/data/services/metrics/mapreduce/gc.json',
  705. 'testInProduction': true
  706. },
  707. 'service.metrics.mapreduce.jobs_status': {
  708. '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}]',
  709. 'mock': '/data/services/metrics/mapreduce/jobs_status.json',
  710. 'testInProduction': true
  711. },
  712. 'service.metrics.mapreduce.jobs_heap': {
  713. '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}]',
  714. 'mock': '/data/services/metrics/mapreduce/jvm_heap.json',
  715. 'testInProduction': true
  716. },
  717. 'service.metrics.mapreduce.jobs_threads': {
  718. '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}]',
  719. 'mock': '/data/services/metrics/mapreduce/jvm_threads.json',
  720. 'testInProduction': true
  721. },
  722. 'service.metrics.mapreduce.map_slots': {
  723. '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}]',
  724. 'mock': '/data/services/metrics/mapreduce/map_slots.json',
  725. 'testInProduction': true
  726. },
  727. 'service.metrics.mapreduce.reduce_slots': {
  728. '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}]',
  729. 'mock': '/data/services/metrics/mapreduce/reduce_slots.json',
  730. 'testInProduction': true
  731. },
  732. 'service.metrics.mapreduce.rpc': {
  733. 'real': '/clusters/{clusterName}/hosts/{jobTrackerNode}/host_components/JOBTRACKER?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  734. 'mock': '/data/services/metrics/mapreduce/rpc.json',
  735. 'testInProduction': true
  736. },
  737. 'service.metrics.mapreduce.tasks_running_waiting': {
  738. '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}]',
  739. 'mock': '/data/services/metrics/mapreduce/tasks_running_waiting.json',
  740. 'testInProduction': true
  741. },
  742. 'service.metrics.hdfs.block_status': {
  743. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/FSNamesystem/PendingReplicationBlocks[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/UnderReplicatedBlocks[{fromSeconds},{toSeconds},{stepSeconds}]',
  744. 'mock': '/data/services/metrics/hdfs/block_status.json',
  745. 'testInProduction': true
  746. },
  747. 'service.metrics.hdfs.file_operations': {
  748. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/namenode/FileInfoOps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/namenode/CreateFileOps[{fromSeconds},{toSeconds},{stepSeconds}]',
  749. 'mock': '/data/services/metrics/hdfs/file_operations.json',
  750. 'testInProduction': true
  751. },
  752. 'service.metrics.hdfs.gc': {
  753. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  754. 'mock': '/data/services/metrics/hdfs/gc.json',
  755. 'testInProduction': true
  756. },
  757. 'service.metrics.hdfs.io': {
  758. 'real': '/clusters/{clusterName}/services/HDFS/components/DATANODE?fields=metrics/dfs/datanode/bytes_written[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/datanode/bytes_read[{fromSeconds},{toSeconds},{stepSeconds}]',
  759. 'mock': '/data/services/metrics/hdfs/io.json',
  760. 'testInProduction': true
  761. },
  762. 'service.metrics.hdfs.jvm_heap': {
  763. '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}]',
  764. 'mock': '/data/services/metrics/hdfs/jvm_heap.json',
  765. 'testInProduction': true
  766. },
  767. 'service.metrics.hdfs.jvm_threads': {
  768. '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}]',
  769. 'mock': '/data/services/metrics/hdfs/jvm_threads.json',
  770. 'testInProduction': true
  771. },
  772. 'service.metrics.hdfs.rpc': {
  773. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  774. 'mock': '/data/services/metrics/hdfs/rpc.json',
  775. 'testInProduction': true
  776. },
  777. 'service.metrics.hdfs.space_utilization': {
  778. '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}]',
  779. 'mock': '/data/services/metrics/hdfs/space_utilization.json',
  780. 'testInProduction': true
  781. },
  782. 'service.start_stop': {
  783. 'real': '/clusters/{clusterName}/services?params/run_smoke_test=true',
  784. 'mock': '/data/mirroring/poll/poll_6.json',
  785. 'format': function (data) {
  786. return {
  787. type: 'PUT',
  788. async: false,
  789. data: data.data
  790. };
  791. }
  792. },
  793. 'service.metrics.yarn.gc': {
  794. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  795. 'mock': '/data/services/metrics/yarn/gc.json',
  796. 'testInProduction': true
  797. },
  798. 'service.metrics.yarn.jobs_threads': {
  799. '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}]',
  800. 'mock': '/data/services/metrics/yarn/jvm_threads.json',
  801. 'testInProduction': true
  802. },
  803. 'service.metrics.yarn.rpc': {
  804. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  805. 'mock': '/data/services/metrics/yarn/rpc.json',
  806. 'testInProduction': true
  807. },
  808. 'service.metrics.yarn.jobs_heap': {
  809. '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}]',
  810. 'mock': '/data/services/metrics/yarn/jvm_heap.json',
  811. 'testInProduction': true
  812. },
  813. 'service.metrics.yarn.queue.allocated': {
  814. '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}]',
  815. 'mock': '',
  816. 'testInProduction': true
  817. },
  818. 'service.metrics.yarn.queue.allocated.container': {
  819. '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}]',
  820. 'mock': '',
  821. 'testInProduction': true
  822. },
  823. 'service.metrics.yarn.node.manager.statuses': {
  824. '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}]',
  825. 'mock': '',
  826. 'testInProduction': true
  827. },
  828. 'service.metrics.yarn.queue.memory.resource': {
  829. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=',
  830. 'mock': '',
  831. 'format': function (data, opt) {
  832. var field1 = 'metrics/yarn/Queue/{queueName}/AllocatedMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  833. var field2 = 'metrics/yarn/Queue/{queueName}/AvailableMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  834. if (opt.url != null && data.queueNames != null && data.queueNames.length > 0) {
  835. data.queueNames.forEach(function (q) {
  836. data.queueName = q;
  837. opt.url += (formatUrl(field1, data) + ",");
  838. opt.url += (formatUrl(field2, data) + ",");
  839. });
  840. } else {
  841. opt.url += (formatUrl(field1, data) + ",");
  842. opt.url += (formatUrl(field2, data) + ",");
  843. }
  844. },
  845. 'testInProduction': true
  846. },
  847. 'service.metrics.yarn.queue.apps.states.current': {
  848. '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}]',
  849. 'mock': '',
  850. 'testInProduction': true
  851. },
  852. 'service.metrics.yarn.queue.apps.states.finished': {
  853. '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}]',
  854. 'mock': '',
  855. 'testInProduction': true
  856. },
  857. 'service.metrics.storm.nimbus': {
  858. 'real': '/clusters/{clusterName}/services/STORM/components/NIMBUS?fields={metricsTemplate}',
  859. 'mock': ''
  860. },
  861. 'dashboard.cluster_metrics.cpu': {
  862. 'real': '/clusters/{clusterName}/?fields=metrics/cpu[{fromSeconds},{toSeconds},{stepSeconds}]',
  863. 'mock': '/data/cluster_metrics/cpu_1hr.json',
  864. 'testInProduction': true
  865. },
  866. 'dashboard.cluster_metrics.load': {
  867. 'real': '/clusters/{clusterName}/?fields=metrics/load[{fromSeconds},{toSeconds},{stepSeconds}]',
  868. 'mock': '/data/cluster_metrics/load_1hr.json',
  869. 'testInProduction': true
  870. },
  871. 'dashboard.cluster_metrics.memory': {
  872. 'real': '/clusters/{clusterName}/?fields=metrics/memory[{fromSeconds},{toSeconds},{stepSeconds}]',
  873. 'mock': '/data/cluster_metrics/memory_1hr.json',
  874. 'testInProduction': true
  875. },
  876. 'dashboard.cluster_metrics.network': {
  877. 'real': '/clusters/{clusterName}/?fields=metrics/network[{fromSeconds},{toSeconds},{stepSeconds}]',
  878. 'mock': '/data/cluster_metrics/network_1hr.json',
  879. 'testInProduction': true
  880. },
  881. 'host.metrics.cpu': {
  882. '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}]',
  883. 'mock': '/data/hosts/metrics/cpu.json',
  884. 'testInProduction': true
  885. },
  886. 'host.metrics.disk': {
  887. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/disk/disk_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/disk/disk_free[{fromSeconds},{toSeconds},{stepSeconds}]',
  888. 'mock': '/data/hosts/metrics/disk.json',
  889. 'testInProduction': true
  890. },
  891. 'host.metrics.load': {
  892. '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}]',
  893. 'mock': '/data/hosts/metrics/load.json',
  894. 'testInProduction': true
  895. },
  896. 'host.metrics.memory': {
  897. '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}]',
  898. 'mock': '/data/hosts/metrics/memory.json',
  899. 'testInProduction': true
  900. },
  901. 'host.metrics.network': {
  902. '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}]',
  903. 'mock': '/data/hosts/metrics/network.json',
  904. 'testInProduction': true
  905. },
  906. 'host.metrics.processes': {
  907. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/process/proc_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/process/proc_run[{fromSeconds},{toSeconds},{stepSeconds}]',
  908. 'mock': '/data/hosts/metrics/processes.json',
  909. 'testInProduction': true
  910. },
  911. 'host.service_config_hosts_overrides': {
  912. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  913. 'mock': '',
  914. 'format': function() {
  915. return {
  916. async: false,
  917. timeout: 10000
  918. };
  919. }
  920. },
  921. 'admin.security_status': {
  922. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs',
  923. 'mock': '',
  924. 'format': function() {
  925. return {
  926. timeout: 10000
  927. };
  928. }
  929. },
  930. 'settings.get.user_pref': {
  931. 'real': '/persist/{key}',
  932. 'mock': '/data/user_settings/{key}.json',
  933. 'format': function(data) {
  934. return {
  935. async: data.async
  936. };
  937. }
  938. },
  939. 'settings.post.user_pref': {
  940. 'real': '/persist',
  941. 'mock': '',
  942. 'type': 'POST',
  943. 'format': function (data) {
  944. return {
  945. async: data.async,
  946. data: JSON.stringify(data.keyValuePair)
  947. }
  948. }
  949. },
  950. 'cluster.load_cluster_name': {
  951. 'real': '/clusters',
  952. 'mock': '/data/clusters/info.json',
  953. 'format': function() {
  954. return {
  955. async: false
  956. };
  957. }
  958. },
  959. 'cluster.update_upgrade_version': {
  960. 'real': '/stacks2/HDP/versions?fields=stackServices/StackServices,Versions',
  961. 'mock': '/data/wizard/stack/stacks.json',
  962. 'format': function() {
  963. return {
  964. async: false
  965. };
  966. }
  967. },
  968. 'cluster.load_repositories': {
  969. 'real': '/stacks2/{stackName}/versions/{stackVersion}/operatingSystems?fields=repositories/*',
  970. 'mock': '',
  971. 'type': 'GET',
  972. 'format': function (data) {
  973. return {
  974. data: data.data
  975. };
  976. }
  977. },
  978. 'admin.high_availability.stop_all_services': {
  979. 'real': '/clusters/{clusterName}/services',
  980. 'mock': '',
  981. 'format': function() {
  982. return {
  983. type: 'PUT',
  984. data: JSON.stringify({
  985. "RequestInfo": {
  986. "context": "Stop all services"
  987. },
  988. "Body": {
  989. "ServiceInfo": {
  990. "state": "INSTALLED"
  991. }
  992. }
  993. })
  994. }
  995. }
  996. },
  997. 'admin.high_availability.start_all_services': {
  998. 'real': '/clusters/{clusterName}/services',
  999. 'mock': '',
  1000. 'format': function() {
  1001. return {
  1002. type: 'PUT',
  1003. data: JSON.stringify({
  1004. "RequestInfo": {
  1005. "context": "Start all services"
  1006. },
  1007. "Body": {
  1008. "ServiceInfo": {
  1009. "state": "STARTED"
  1010. }
  1011. }
  1012. })
  1013. }
  1014. }
  1015. },
  1016. 'admin.high_availability.polling': {
  1017. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=tasks/*',
  1018. 'mock': '',
  1019. 'type': 'GET'
  1020. },
  1021. 'admin.high_availability.getNnCheckPointStatus': {
  1022. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/NAMENODE',
  1023. 'mock': '',
  1024. 'type': 'GET'
  1025. },
  1026. 'admin.high_availability.getJnCheckPointStatus': {
  1027. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/JOURNALNODE?fields=metrics',
  1028. 'mock': ''
  1029. },
  1030. 'admin.high_availability.getHostComponent': {
  1031. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1032. 'mock': ''
  1033. },
  1034. 'admin.high_availability.create_component': {
  1035. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  1036. 'mock': '',
  1037. 'type': 'POST',
  1038. 'format': function (data) {
  1039. return {
  1040. data: JSON.stringify({
  1041. "host_components": [
  1042. {
  1043. "HostRoles": {
  1044. "component_name": data.componentName
  1045. }
  1046. }
  1047. ]
  1048. })
  1049. }
  1050. }
  1051. },
  1052. 'admin.high_availability.create_journalnode': {
  1053. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1054. 'mock': '',
  1055. 'type': 'POST',
  1056. 'format': function() {
  1057. return {
  1058. data: JSON.stringify({
  1059. "components": [
  1060. {
  1061. "ServiceComponentInfo": {
  1062. "component_name": "JOURNALNODE"
  1063. }
  1064. }
  1065. ]
  1066. })
  1067. }
  1068. }
  1069. },
  1070. 'admin.high_availability.create_zkfc': {
  1071. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1072. 'mock': '',
  1073. 'type': 'POST',
  1074. 'format': function() {
  1075. return {
  1076. data: JSON.stringify({
  1077. "components": [
  1078. {
  1079. "ServiceComponentInfo": {
  1080. "component_name": "ZKFC"
  1081. }
  1082. }
  1083. ]
  1084. })
  1085. }
  1086. }
  1087. },
  1088. 'admin.high_availability.install_component': {
  1089. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1090. 'mock': '',
  1091. 'type': 'PUT',
  1092. 'format': function (data) {
  1093. return {
  1094. data: JSON.stringify({
  1095. RequestInfo: {
  1096. "context": "Install " + data.displayName
  1097. },
  1098. Body: {
  1099. "HostRoles": {
  1100. "state": "INSTALLED"
  1101. }
  1102. }
  1103. })
  1104. }
  1105. }
  1106. },
  1107. 'admin.high_availability.start_component': {
  1108. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1109. 'mock': '',
  1110. 'type': 'PUT',
  1111. 'format': function (data) {
  1112. return {
  1113. data: JSON.stringify({
  1114. RequestInfo: {
  1115. "context": "Start " + data.displayName
  1116. },
  1117. Body: {
  1118. "HostRoles": {
  1119. "state": "STARTED"
  1120. }
  1121. }
  1122. })
  1123. }
  1124. }
  1125. },
  1126. 'admin.high_availability.maintenance_mode': {
  1127. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1128. 'mock': '',
  1129. 'type': 'PUT',
  1130. 'format': function () {
  1131. return {
  1132. data: JSON.stringify({
  1133. "HostRoles": {
  1134. "state": "DISABLED"
  1135. }
  1136. })
  1137. }
  1138. }
  1139. },
  1140. 'admin.high_availability.stop_component': {
  1141. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1142. 'mock': '',
  1143. 'type': 'PUT',
  1144. 'format': function (data) {
  1145. return {
  1146. data: JSON.stringify({
  1147. RequestInfo: {
  1148. "context": "Stop " + data.displayName
  1149. },
  1150. Body: {
  1151. "HostRoles": {
  1152. "state": "INSTALLED"
  1153. }
  1154. }
  1155. })
  1156. }
  1157. }
  1158. },
  1159. 'admin.high_availability.load_configs': {
  1160. 'real': '/clusters/{clusterName}/configurations?(type=core-site&tag={coreSiteTag})|(type=hdfs-site&tag={hdfsSiteTag})',
  1161. 'mock': '',
  1162. 'type': 'GET'
  1163. },
  1164. 'admin.high_availability.save_configs': {
  1165. 'real': '/clusters/{clusterName}',
  1166. 'mock': '',
  1167. 'type': 'PUT',
  1168. 'format': function (data) {
  1169. return {
  1170. async: false,
  1171. data: JSON.stringify({
  1172. Clusters: {
  1173. desired_config: {
  1174. "type": data.siteName,
  1175. "tag": 'version' + (new Date).getTime(),
  1176. "properties": data.properties
  1177. }
  1178. }
  1179. })
  1180. }
  1181. }
  1182. },
  1183. 'admin.high_availability.load_hbase_configs': {
  1184. 'real': '/clusters/{clusterName}/configurations?type=hbase-site&tag={hbaseSiteTag}',
  1185. 'mock': '',
  1186. 'type': 'GET'
  1187. },
  1188. 'admin.delete_component': {
  1189. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1190. 'mock': '',
  1191. 'type': 'DELETE'
  1192. },
  1193. 'admin.security.cluster_configs': {
  1194. 'real': '/clusters/{clusterName}',
  1195. 'mock': '',
  1196. 'format': function() {
  1197. return {
  1198. timeout: 10000
  1199. };
  1200. }
  1201. },
  1202. 'admin.delete_host': {
  1203. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  1204. 'mock': '',
  1205. 'type': 'DELETE'
  1206. },
  1207. 'admin.get.all_configurations': {
  1208. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  1209. 'mock': '',
  1210. 'format': function() {
  1211. return {
  1212. timeout: 10000
  1213. };
  1214. }
  1215. },
  1216. 'admin.security.apply_configurations': {
  1217. 'real': '/clusters/{clusterName}',
  1218. 'mock': '',
  1219. 'format': function (data) {
  1220. return {
  1221. type: 'PUT',
  1222. timeout: 10000,
  1223. data: data.configData
  1224. };
  1225. }
  1226. },
  1227. 'admin.security.apply_configuration': {
  1228. 'real': '/clusters/{clusterName}',
  1229. 'mock': '',
  1230. 'format': function(data) {
  1231. return {
  1232. type: 'PUT',
  1233. async: false,
  1234. timeout: 5000,
  1235. data: JSON.stringify(data.clusterData)
  1236. };
  1237. }
  1238. },
  1239. 'admin.security.add.cluster_configs': {
  1240. 'real': '/clusters/{clusterName}' + '?fields=Clusters/desired_configs',
  1241. 'mock': '',
  1242. 'format': function() {
  1243. return {
  1244. timeout: 10000
  1245. };
  1246. }
  1247. },
  1248. 'admin.stack_upgrade.run_upgrade': {
  1249. 'real': '/clusters/{clusterName}',
  1250. 'mock': '',
  1251. 'format': function (data) {
  1252. return {
  1253. type: 'PUT',
  1254. async: false,
  1255. data: data.data
  1256. };
  1257. }
  1258. },
  1259. 'admin.stack_upgrade.stop_services': {
  1260. 'real': '/clusters/{clusterName}/services?ServiceInfo/state=STARTED',
  1261. 'mock': '',
  1262. 'format': function (data) {
  1263. return {
  1264. type: 'PUT',
  1265. async: false,
  1266. data: data.data
  1267. };
  1268. }
  1269. },
  1270. 'admin.user.create': {
  1271. 'real': '/users/{user}',
  1272. 'mock': '/data/users/users.json',
  1273. 'format': function(data) {
  1274. return {
  1275. type: 'POST',
  1276. data: JSON.stringify(data.data)
  1277. }
  1278. }
  1279. },
  1280. 'admin.user.delete': {
  1281. 'real': '/users/{user}',
  1282. 'mock': '/data/users/users.json',
  1283. 'format': function() {
  1284. return {
  1285. type: 'DELETE'
  1286. }
  1287. }
  1288. },
  1289. 'admin.user.edit': {
  1290. 'real': '/users/{user}',
  1291. 'mock':'/data/users/users.json',
  1292. 'format': function(data) {
  1293. return {
  1294. type: 'PUT',
  1295. data: data.data
  1296. }
  1297. }
  1298. },
  1299. 'admin.stack_upgrade.do_poll': {
  1300. 'real': '/clusters/{cluster}/requests/{requestId}?fields=tasks/*',
  1301. 'mock': '/data/wizard/{mock}'
  1302. },
  1303. 'wizard.advanced_repositories.valid_url': {
  1304. 'real': '/stacks2/{stackName}/versions/{stackVersion}/operatingSystems/{osType}/repositories/{nameVersionCombo}',
  1305. 'mock': '',
  1306. 'type': 'PUT',
  1307. 'format': function (data) {
  1308. return {
  1309. async: true,
  1310. data: JSON.stringify(data.data)
  1311. }
  1312. }
  1313. },
  1314. 'wizard.install_services.add_host_controller.is_retry': {
  1315. 'real': '/clusters/{cluster}/host_components',
  1316. 'mock': '',
  1317. 'format': function (data) {
  1318. return {
  1319. type: 'PUT',
  1320. async: false,
  1321. data: data.data
  1322. };
  1323. }
  1324. },
  1325. 'wizard.install_services.add_host_controller.not_is_retry': {
  1326. 'real': '/clusters/{cluster}/host_components',
  1327. 'mock': '',
  1328. 'format': function(data) {
  1329. return {
  1330. type: 'PUT',
  1331. async: false,
  1332. data: data.data
  1333. };
  1334. }
  1335. },
  1336. 'wizard.install_services.installer_controller.is_retry': {
  1337. 'real': '/clusters/{cluster}/host_components?HostRoles/state=INSTALLED',
  1338. 'mock': '/data/wizard/deploy/2_hosts/poll_1.json',
  1339. 'type': 'PUT',
  1340. 'format': function (data) {
  1341. return {
  1342. async: false,
  1343. data: data.data
  1344. };
  1345. }
  1346. },
  1347. 'wizard.install_services.installer_controller.not_is_retry': {
  1348. 'real': '/clusters/{cluster}/services?ServiceInfo/state=INIT',
  1349. 'mock': '/data/wizard/deploy/2_hosts/poll_1.json',
  1350. 'type': 'PUT',
  1351. 'format': function (data) {
  1352. return {
  1353. async: false,
  1354. data: data.data
  1355. };
  1356. }
  1357. },
  1358. 'wizard.install_services.add_service_controller.get_failed_host_components': {
  1359. 'real': '/clusters/{clusterName}/host_components?fields=HostRoles/state,component/ServiceComponentInfo/service_name',
  1360. 'mock': '',
  1361. 'format': function() {
  1362. return {
  1363. async: false
  1364. };
  1365. }
  1366. },
  1367. 'wizard.service_components': {
  1368. 'real': '{stackUrl}/stackServices?fields=StackServices/comments,StackServices/service_version,serviceComponents/*',
  1369. 'mock': '/data/stacks/HDP-2.1/service_components.json',
  1370. 'format': function(data) {
  1371. return {
  1372. timeout: 10000,
  1373. async: !!data.async
  1374. };
  1375. }
  1376. },
  1377. 'wizard.step9.installer.get_host_status': {
  1378. 'real': '/clusters/{cluster}/hosts?fields=Hosts/host_state,host_components/HostRoles/state',
  1379. 'mock': '/data/wizard/deploy/5_hosts/get_host_state.json',
  1380. 'format': function () {
  1381. return {
  1382. async: false
  1383. };
  1384. }
  1385. },
  1386. 'wizard.step9.installer.launch_start_services': {
  1387. 'real': '/clusters/{cluster}/services?ServiceInfo/state=INSTALLED&params/run_smoke_test=true&params/reconfigure_client=false',
  1388. 'mock': '/data/wizard/deploy/5_hosts/poll_6.json',
  1389. 'format': function (data) {
  1390. var d = {
  1391. type: 'PUT',
  1392. async: false,
  1393. data: data.data
  1394. };
  1395. if (App.testMode) {
  1396. d.type = 'GET';
  1397. }
  1398. return d;
  1399. }
  1400. },
  1401. 'wizard.step9.add_host.launch_start_services': {
  1402. 'real': '/clusters/{cluster}/host_components',
  1403. 'mock': '/data/wizard/deploy/5_hosts/poll_6.json',
  1404. 'format': function (data) {
  1405. return {
  1406. type: 'PUT',
  1407. async: false,
  1408. data: data.data
  1409. };
  1410. }
  1411. },
  1412. 'wizard.step9.load_log': {
  1413. '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',
  1414. 'mock': '/data/wizard/deploy/5_hosts/poll_{numPolls}.json',
  1415. 'format': function () {
  1416. return {
  1417. type: 'GET',
  1418. async: true,
  1419. dataType: 'text'
  1420. };
  1421. }
  1422. },
  1423. 'wizard.step8.delete_cluster': {
  1424. 'real': '/clusters/{name}',
  1425. 'mock': '',
  1426. 'format': function() {
  1427. return {
  1428. type: 'DELETE',
  1429. async: false
  1430. };
  1431. }
  1432. },
  1433. 'wizard.step8.existing_cluster_names': {
  1434. 'real': '/clusters',
  1435. 'mock': '',
  1436. 'format': function() {
  1437. return {
  1438. async: false
  1439. };
  1440. }
  1441. },
  1442. 'wizard.step8.create_cluster': {
  1443. 'real':'/clusters/{cluster}',
  1444. 'mock':'',
  1445. 'format': function(data) {
  1446. return {
  1447. type: 'POST',
  1448. async: true,
  1449. dataType: 'text',
  1450. data: data.data
  1451. }
  1452. }
  1453. },
  1454. 'wizard.step8.create_selected_services': {
  1455. 'real':'/clusters/{cluster}/services',
  1456. 'mock':'',
  1457. 'format': function(data) {
  1458. return {
  1459. type: 'POST',
  1460. async: true,
  1461. dataType: 'text',
  1462. data: data.data
  1463. }
  1464. }
  1465. },
  1466. 'wizard.step8.create_components': {
  1467. 'real':'/clusters/{cluster}/services?ServiceInfo/service_name={serviceName}',
  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.register_host_to_cluster': {
  1479. 'real':'/clusters/{cluster}/hosts',
  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.register_host_to_component': {
  1491. 'real':'/clusters/{cluster}/hosts',
  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.apply_configuration_to_cluster': {
  1503. 'real':'/clusters/{cluster}',
  1504. 'mock':'',
  1505. 'format': function(data) {
  1506. return {
  1507. type: 'PUT',
  1508. async: true,
  1509. dataType: 'text',
  1510. data: data.data
  1511. }
  1512. }
  1513. },
  1514. 'wizard.step8.apply_configuration_groups': {
  1515. 'real':'/clusters/{cluster}/config_groups',
  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.set_local_repos': {
  1527. 'real':'{stack2VersionURL}/operatingSystems/{osType}/repositories/{name}',
  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.step3.host_info': {
  1539. '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',
  1540. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1541. 'format': function() {
  1542. return {
  1543. contentType: 'application/json'
  1544. };
  1545. }
  1546. },
  1547. 'wizard.step3.rerun_checks': {
  1548. 'real': '/hosts?fields=Hosts/last_agent_env',
  1549. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1550. 'format': function() {
  1551. return {
  1552. contentType: 'application/json'
  1553. };
  1554. }
  1555. },
  1556. 'wizard.step3.bootstrap': {
  1557. 'real': '/bootstrap/{bootRequestId}',
  1558. 'mock': '/data/wizard/bootstrap/poll_{numPolls}.json'
  1559. },
  1560. 'wizard.step3.is_hosts_registered': {
  1561. 'real': '/hosts',
  1562. 'mock': '/data/wizard/bootstrap/single_host_registration.json'
  1563. },
  1564. 'wizard.stacks': {
  1565. 'real': '/stacks2',
  1566. 'mock': '/data/wizard/stack/stacks2.json',
  1567. 'format': function() {
  1568. return {
  1569. async: false
  1570. };
  1571. }
  1572. },
  1573. 'wizard.stacks_versions': {
  1574. 'real': '/stacks2/{stackName}/versions?fields=Versions,operatingSystems/repositories/Repositories',
  1575. 'mock': '/data/wizard/stack/{stackName}_versions.json',
  1576. 'format': function() {
  1577. return {
  1578. async: false
  1579. };
  1580. }
  1581. },
  1582. 'wizard.launch_bootstrap': {
  1583. 'real': '/bootstrap',
  1584. 'mock': '/data/wizard/bootstrap/bootstrap.json',
  1585. 'type': 'POST',
  1586. 'format': function (data) {
  1587. return {
  1588. contentType: 'application/json',
  1589. data: data.bootStrapData,
  1590. popup: data.popup
  1591. }
  1592. }
  1593. },
  1594. 'router.login': {
  1595. 'real': '/users/{loginName}',
  1596. 'mock': '/data/users/user_{usr}.json',
  1597. 'format': function (data) {
  1598. var statusCode = jQuery.extend({}, require('data/statusCodes'));
  1599. statusCode['403'] = function () {
  1600. console.log("Error code 403: Forbidden.");
  1601. };
  1602. return {
  1603. statusCode: statusCode
  1604. };
  1605. }
  1606. },
  1607. 'router.login2': {
  1608. 'real': '/clusters',
  1609. 'mock': '/data/clusters/info.json'
  1610. },
  1611. 'router.logoff': {
  1612. 'real': '/logout',
  1613. 'mock': ''
  1614. },
  1615. 'router.set_ambari_stacks': {
  1616. 'real': '/stacks',
  1617. 'mock': '/data/wizard/stack/stacks.json',
  1618. 'format': function() {
  1619. return {
  1620. async: false
  1621. };
  1622. }
  1623. },
  1624. 'router.authentication': {
  1625. 'real': '/clusters',
  1626. 'mock': '/data/clusters/info.json',
  1627. 'format': function() {
  1628. return {
  1629. async: false
  1630. };
  1631. }
  1632. },
  1633. 'ambari.service.load_server_version': {
  1634. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/component_version',
  1635. 'mock': ''
  1636. },
  1637. 'ambari.service': {
  1638. 'real': '/services/AMBARI/components/AMBARI_SERVER',
  1639. 'mock': '/data/services/ambari_server.json'
  1640. },
  1641. 'ambari.service.load_server_clock': {
  1642. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/server_clock',
  1643. 'mock': ''
  1644. },
  1645. 'config_groups.create': {
  1646. 'real': '/clusters/{clusterName}/config_groups',
  1647. 'mock': '',
  1648. 'format': function (data) {
  1649. return {
  1650. async: false,
  1651. type: 'POST',
  1652. data: JSON.stringify([{
  1653. "ConfigGroup": {
  1654. "group_name": data.group_name,
  1655. "tag": data.service_id,
  1656. "description": data.description,
  1657. "desired_configs": data.desired_configs,
  1658. "hosts": data.hosts
  1659. }
  1660. }])
  1661. }
  1662. }
  1663. },
  1664. 'config_groups.update': {
  1665. 'real': '/clusters/{clusterName}/config_groups/{id}',
  1666. 'mock': '',
  1667. 'format': function (data) {
  1668. return {
  1669. async: true,
  1670. type: 'PUT',
  1671. data: JSON.stringify(data.data)
  1672. }
  1673. }
  1674. },
  1675. 'rolling_restart.post': {
  1676. 'real': '/clusters/{clusterName}/request_schedules',
  1677. 'mock': '',
  1678. 'format' : function(data) {
  1679. return {
  1680. type : 'POST',
  1681. data : JSON.stringify([ {
  1682. "RequestSchedule" : {
  1683. "batch" : [ {
  1684. "requests" : data.batches
  1685. }, {
  1686. "batch_settings" : {
  1687. "batch_separation_in_seconds" : data.intervalTimeSeconds,
  1688. "task_failure_tolerance" : data.tolerateSize
  1689. }
  1690. } ]
  1691. }
  1692. } ])
  1693. }
  1694. }
  1695. },
  1696. 'request_schedule.delete': {
  1697. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  1698. 'mock': '',
  1699. 'format' : function() {
  1700. return {
  1701. type : 'DELETE'
  1702. }
  1703. }
  1704. },
  1705. 'request_schedule.get': {
  1706. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  1707. 'mock': ''
  1708. },
  1709. 'restart.hostComponents': {
  1710. 'real':'/clusters/{clusterName}/requests',
  1711. 'mock':'',
  1712. 'format': function(data) {
  1713. return {
  1714. type : 'POST',
  1715. data : JSON.stringify({
  1716. "RequestInfo": {
  1717. "command": "RESTART",
  1718. "context": data.context,
  1719. "operation_level": data.operation_level
  1720. },
  1721. "Requests/resource_filters": data.resource_filters
  1722. })
  1723. }
  1724. }
  1725. },
  1726. 'mirroring.get_all_entities': {
  1727. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/list/{type}?fields=status&user.name=ambari-qa',
  1728. 'mock': '/data/mirroring/{type}s.xml',
  1729. 'apiPrefix': '',
  1730. 'format': function () {
  1731. return {
  1732. dataType: 'xml'
  1733. }
  1734. }
  1735. },
  1736. 'mirroring.get_definition': {
  1737. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/definition/{type}/{name}?user.name=ambari-qa',
  1738. 'mock': '/data/mirroring/{name}_definition.xml',
  1739. 'apiPrefix': '',
  1740. 'format': function () {
  1741. return {
  1742. cache: true,
  1743. dataType: 'xml'
  1744. }
  1745. }
  1746. },
  1747. 'mirroring.dataset.get_all_instances': {
  1748. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/status/feed/{dataset}?start={start}&end={end}&user.name=ambari-qa',
  1749. 'mock': '/data/mirroring/{dataset}_instances.json',
  1750. 'apiPrefix': ''
  1751. },
  1752. 'mirroring.create_new_dataset': {
  1753. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/submitAndSchedule/feed?user.name=ambari-qa',
  1754. 'mock': '/data/mirroring/succeeded.json',
  1755. 'apiPrefix': '',
  1756. 'type': 'POST',
  1757. 'format': function (data) {
  1758. return {
  1759. contentType: 'text/xml',
  1760. dataType: 'xml',
  1761. data: data.dataset,
  1762. headers: {
  1763. 'AmbariProxy-Content-Type': 'text/xml'
  1764. }
  1765. }
  1766. }
  1767. },
  1768. 'mirroring.submit_entity': {
  1769. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/submit/{type}?user.name=ambari-qa',
  1770. 'mock': '/data/mirroring/succeeded.json',
  1771. 'apiPrefix': '',
  1772. 'type': 'POST',
  1773. 'format': function (data) {
  1774. return {
  1775. contentType: 'text/xml',
  1776. dataType: 'xml',
  1777. data: data.entity,
  1778. headers: {
  1779. 'AmbariProxy-Content-Type': 'text/xml'
  1780. }
  1781. }
  1782. }
  1783. },
  1784. 'mirroring.update_entity': {
  1785. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/update/{type}/{name}?user.name=ambari-qa',
  1786. 'mock': '/data/mirroring/succeeded.json',
  1787. 'apiPrefix': '',
  1788. 'type': 'POST',
  1789. 'format': function (data) {
  1790. return {
  1791. contentType: 'text/xml',
  1792. dataType: 'xml',
  1793. data: data.entity,
  1794. headers: {
  1795. 'AmbariProxy-Content-Type': 'text/xml'
  1796. }
  1797. }
  1798. }
  1799. },
  1800. 'mirroring.delete_entity': {
  1801. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/delete/{type}/{name}?user.name=ambari-qa',
  1802. 'mock': '/data/mirroring/succeeded.json',
  1803. 'apiPrefix': '',
  1804. 'type': 'DELETE',
  1805. 'format': function () {
  1806. return {
  1807. dataType: 'xml'
  1808. }
  1809. }
  1810. },
  1811. 'mirroring.suspend_entity': {
  1812. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/suspend/{type}/{name}?user.name=ambari-qa',
  1813. 'mock': '/data/mirroring/succeeded.json',
  1814. 'apiPrefix': '',
  1815. 'type': 'POST',
  1816. 'format': function (data) {
  1817. return {
  1818. dataType: 'xml',
  1819. data: data.entity
  1820. }
  1821. }
  1822. },
  1823. 'mirroring.resume_entity': {
  1824. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/resume/{type}/{name}?user.name=ambari-qa',
  1825. 'mock': '/data/mirroring/succeeded.json',
  1826. 'apiPrefix': '',
  1827. 'type': 'POST',
  1828. 'format': function () {
  1829. return {
  1830. dataType: 'xml'
  1831. }
  1832. }
  1833. },
  1834. 'mirroring.schedule_entity': {
  1835. 'real': '/proxy?url=http://{falconServer}:15000/api/entities/schedule/{type}/{name}?user.name=ambari-qa',
  1836. 'mock': '/data/mirroring/succeeded.json',
  1837. 'apiPrefix': '',
  1838. 'type': 'POST',
  1839. 'format': function () {
  1840. return {
  1841. dataType: 'xml'
  1842. }
  1843. }
  1844. },
  1845. 'mirroring.suspend_instance': {
  1846. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/suspend/feed/{feed}?start={name}&user.name=ambari-qa',
  1847. 'mock': '/data/mirroring/succeeded.json',
  1848. 'apiPrefix': '',
  1849. 'type': 'POST'
  1850. },
  1851. 'mirroring.resume_instance': {
  1852. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/resume/feed/{feed}?start={name}&user.name=ambari-qa',
  1853. 'mock': '/data/mirroring/succeeded.json',
  1854. 'apiPrefix': '',
  1855. 'type': 'POST'
  1856. },
  1857. 'mirroring.kill_instance': {
  1858. 'real': '/proxy?url=http://{falconServer}:15000/api/instance/kill/feed/{feed}?start={name}&user.name=ambari-qa',
  1859. 'mock': '/data/mirroring/succeeded.json',
  1860. 'apiPrefix': '',
  1861. 'type': 'POST'
  1862. },
  1863. 'bulk_request.host_components': {
  1864. 'real': '/clusters/{clusterName}/host_components',
  1865. 'mock': '',
  1866. 'format': function(data) {
  1867. return {
  1868. type: 'PUT',
  1869. data: JSON.stringify({
  1870. RequestInfo: {
  1871. context: data.requestInfo,
  1872. query: 'HostRoles/component_name=' + data.componentName + '&HostRoles/host_name.in(' + data.hostNames + ')&HostRoles/maintenance_state=OFF'
  1873. },
  1874. Body: {
  1875. HostRoles: {
  1876. state: data.state
  1877. }
  1878. }
  1879. })
  1880. }
  1881. }
  1882. },
  1883. 'bulk_request.hosts.all_components': {
  1884. 'real': '/clusters/{clusterName}/host_components',
  1885. 'mock': '',
  1886. 'format': function(data) {
  1887. return {
  1888. type: 'PUT',
  1889. data: JSON.stringify({
  1890. RequestInfo: {
  1891. context: data.requestInfo,
  1892. query: data.query,
  1893. operation_level: {
  1894. level: "HOST",
  1895. cluster_name: data.clusterName,
  1896. host_name: data.hostName
  1897. }
  1898. },
  1899. Body: {
  1900. HostRoles: {
  1901. state: data.state
  1902. }
  1903. }
  1904. })
  1905. }
  1906. }
  1907. },
  1908. 'bulk_request.decommission': {
  1909. 'real' : '/clusters/{clusterName}/requests',
  1910. 'mock' : '',
  1911. 'format': function(data) {
  1912. return {
  1913. type: 'POST',
  1914. data: JSON.stringify({
  1915. 'RequestInfo': {
  1916. 'context': data.context,
  1917. 'command': 'DECOMMISSION',
  1918. 'parameters': data.parameters
  1919. },
  1920. "Requests/resource_filters": [{"service_name" : data.serviceName, "component_name" : data.componentName}]
  1921. })
  1922. }
  1923. }
  1924. },
  1925. 'bulk_request.hosts.passive_state': {
  1926. 'real': '/clusters/{clusterName}/hosts',
  1927. 'mock': '',
  1928. 'format': function(data) {
  1929. return {
  1930. type: 'PUT',
  1931. data: JSON.stringify({
  1932. RequestInfo: {
  1933. context: data.requestInfo,
  1934. query: 'Hosts/host_name.in(' + data.hostNames + ')'
  1935. },
  1936. Body: {
  1937. Hosts: {
  1938. maintenance_state: data.passive_state
  1939. }
  1940. }
  1941. })
  1942. }
  1943. }
  1944. },
  1945. 'bulk_request.hosts.all_components.passive_state': {
  1946. 'real': '/clusters/{clusterName}/host_components',
  1947. 'mock': '',
  1948. 'format': function(data) {
  1949. return {
  1950. type: 'PUT',
  1951. data: JSON.stringify({
  1952. RequestInfo: {
  1953. context: data.requestInfo,
  1954. query: data.query
  1955. },
  1956. Body: {
  1957. HostRoles: {
  1958. maintenance_state: data.passive_state
  1959. }
  1960. }
  1961. })
  1962. }
  1963. }
  1964. },
  1965. 'jobs.lastID': {
  1966. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/HIVE_QUERY_ID?limit=1&secondaryFilter=tez:true',
  1967. 'mock': 'data/jobs/hive-queries.json',
  1968. 'apiPrefix': ''
  1969. },
  1970. 'jobs.tezDag.NametoID': {
  1971. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_DAG_ID?primaryFilter=dagName:{tezDagName}',
  1972. 'mock': '/data/jobs/tezDag-name-to-id.json',
  1973. 'apiPrefix': ''
  1974. },
  1975. 'jobs.tezDag.tezDagId': {
  1976. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_DAG_ID/{tezDagId}?fields=relatedentities,otherinfo',
  1977. 'mock': '/data/jobs/tezDag.json',
  1978. 'apiPrefix': ''
  1979. },
  1980. 'jobs.tezDag.tezDagVertexId': {
  1981. 'real': '/proxy?url=http://{historyServerHostName}:{ahsWebPort}/ws/v1/timeline/TEZ_VERTEX_ID/{tezDagVertexId}?fields=otherinfo',
  1982. 'mock': '/data/jobs/tezDagVertex.json',
  1983. 'apiPrefix': ''
  1984. },
  1985. 'views.info': {
  1986. 'real': '/views',
  1987. 'mock':''
  1988. },
  1989. /**
  1990. * Get all instances of {viewName} across versions
  1991. * @param {String} viewName
  1992. */
  1993. 'views.instances': {
  1994. 'real': '/views/{viewName}?fields=versions/instances',
  1995. 'mock':''
  1996. },
  1997. 'host.host_component.flume.metrics': {
  1998. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/FLUME_HANDLER?fields=metrics/flume/flume/{flumeComponent}/*',
  1999. 'mock': '',
  2000. 'format': function(data) {
  2001. return {
  2002. async: data.async
  2003. }
  2004. }
  2005. },
  2006. 'host.host_component.flume.metrics.timeseries': {
  2007. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/FLUME_HANDLER?fields=metrics/flume/flume/{flumeComponent}/*/{flumeComponentMetric}[{fromSeconds},{toSeconds},{stepSeconds}]',
  2008. 'mock': ''
  2009. }
  2010. };
  2011. /**
  2012. * Replace data-placeholders to its values
  2013. *
  2014. * @param {String} url
  2015. * @param {Object} data
  2016. * @return {String}
  2017. */
  2018. var formatUrl = function (url, data) {
  2019. if (!url) return null;
  2020. var keys = url.match(/\{\w+\}/g);
  2021. keys = (keys === null) ? [] : keys;
  2022. if (keys) {
  2023. keys.forEach(function (key) {
  2024. var raw_key = key.substr(1, key.length - 2);
  2025. var replace;
  2026. if (!data || !data[raw_key]) {
  2027. replace = '';
  2028. }
  2029. else {
  2030. replace = data[raw_key];
  2031. }
  2032. url = url.replace(new RegExp(key, 'g'), replace);
  2033. });
  2034. }
  2035. return url;
  2036. };
  2037. /**
  2038. * this = object from config
  2039. * @return {Object}
  2040. */
  2041. var formatRequest = function (data) {
  2042. var opt = {
  2043. type: this.type || 'GET',
  2044. timeout: App.timeout,
  2045. dataType: 'json',
  2046. statusCode: require('data/statusCodes')
  2047. };
  2048. if (App.testMode) {
  2049. opt.url = formatUrl(this.mock ? this.mock : '', data);
  2050. opt.type = 'GET';
  2051. }
  2052. else {
  2053. var prefix = this.apiPrefix != null ? this.apiPrefix : App.apiPrefix;
  2054. opt.url = prefix + formatUrl(this.real, data);
  2055. }
  2056. if (this.format) {
  2057. jQuery.extend(opt, this.format(data, opt));
  2058. }
  2059. return opt;
  2060. };
  2061. /**
  2062. * Wrapper for all ajax requests
  2063. *
  2064. * @type {Object}
  2065. */
  2066. var ajax = Em.Object.extend({
  2067. /**
  2068. * Send ajax request
  2069. *
  2070. * @param {Object} config
  2071. * @return {$.ajax} jquery ajax object
  2072. *
  2073. * config fields:
  2074. * name - url-key in the urls-object *required*
  2075. * sender - object that send request (need for proper callback initialization) *required*
  2076. * data - object with data for url-format
  2077. * beforeSend - method-name for ajax beforeSend response callback
  2078. * success - method-name for ajax success response callback
  2079. * error - method-name for ajax error response callback
  2080. * callback - callback from <code>App.updater.run</code> library
  2081. */
  2082. send: function (config) {
  2083. console.warn('============== ajax ==============', config.name, config.data);
  2084. if (!config.sender) {
  2085. console.warn('Ajax sender should be defined!');
  2086. return null;
  2087. }
  2088. // default parameters
  2089. var params = {
  2090. clusterName: App.get('clusterName')
  2091. };
  2092. // extend default parameters with provided
  2093. if (config.data) {
  2094. jQuery.extend(params, config.data);
  2095. }
  2096. var opt = {};
  2097. if (!urls[config.name]) {
  2098. console.warn('Invalid name provided!');
  2099. return null;
  2100. }
  2101. opt = formatRequest.call(urls[config.name], params);
  2102. opt.context = this;
  2103. // object sender should be provided for processing beforeSend, success and error responses
  2104. opt.beforeSend = function (xhr) {
  2105. if (config.beforeSend) {
  2106. config.sender[config.beforeSend](opt, xhr, params);
  2107. }
  2108. };
  2109. opt.success = function (data) {
  2110. console.log("TRACE: The url is: " + opt.url);
  2111. if (config.success) {
  2112. config.sender[config.success](data, opt, params);
  2113. }
  2114. };
  2115. opt.error = function (request, ajaxOptions, error) {
  2116. if (config.error) {
  2117. config.sender[config.error](request, ajaxOptions, error, opt, params);
  2118. } else {
  2119. this.defaultErrorHandler(request, opt.url, opt.type);
  2120. }
  2121. };
  2122. opt.complete = function () {
  2123. if (config.callback) {
  2124. config.callback();
  2125. }
  2126. };
  2127. if ($.mocho) {
  2128. opt.url = 'http://' + $.hostName + opt.url;
  2129. }
  2130. return $.ajax(opt);
  2131. },
  2132. // A single instance of App.ModalPopup view
  2133. modalPopup: null,
  2134. /**
  2135. * defaultErrorHandler function is referred from App.ajax.send function and App.HttpClient.defaultErrorHandler function
  2136. * @jqXHR {jqXHR Object}
  2137. * @url {string}
  2138. * @method {String} Http method
  2139. * @showStatus {number} HTTP response code which should be shown. Default is 500.
  2140. */
  2141. defaultErrorHandler: function (jqXHR, url, method, showStatus) {
  2142. method = method || 'GET';
  2143. var self = this;
  2144. var api = " received on " + method + " method for API: " + url;
  2145. try {
  2146. var json = $.parseJSON(jqXHR.responseText);
  2147. var message = json.message;
  2148. } catch (err) {
  2149. }
  2150. if (!showStatus) {
  2151. showStatus = 500;
  2152. }
  2153. var statusCode = jqXHR.status + " status code";
  2154. if (jqXHR.status === showStatus && !this.modalPopup) {
  2155. this.modalPopup = App.ModalPopup.show({
  2156. header: jqXHR.statusText,
  2157. secondary: false,
  2158. onPrimary: function () {
  2159. this.hide();
  2160. self.modalPopup = null;
  2161. },
  2162. bodyClass: Ember.View.extend({
  2163. classNames: ['api-error'],
  2164. templateName: require('templates/utils/ajax'),
  2165. api: api,
  2166. statusCode: statusCode,
  2167. message: message,
  2168. showMessage: !!message
  2169. })
  2170. });
  2171. }
  2172. }
  2173. });
  2174. /**
  2175. * Add few access-methods for test purposes
  2176. */
  2177. if ($.mocho) {
  2178. ajax.reopen({
  2179. /**
  2180. * Don't use it anywhere except tests!
  2181. * @returns {Array}
  2182. */
  2183. fakeGetUrlNames: function() {
  2184. return Em.keys(urls);
  2185. },
  2186. /**
  2187. * Don't use it anywhere except tests!
  2188. * @param name
  2189. * @returns {*}
  2190. */
  2191. fakeGetUrl: function(name) {
  2192. return urls[name];
  2193. },
  2194. /**
  2195. * Don't use it anywhere except tests!
  2196. * @param url
  2197. * @param data
  2198. * @returns {String}
  2199. */
  2200. fakeFormatUrl: function(url, data) {
  2201. return formatUrl(url, data);
  2202. },
  2203. /**
  2204. * Don't use it anywhere except tests!
  2205. * @param urlObj
  2206. * @param data
  2207. * @returns {Object}
  2208. */
  2209. fakeFormatRequest: function(urlObj, data) {
  2210. return formatRequest.call(urlObj, data);
  2211. }
  2212. });
  2213. }
  2214. App.ajax = ajax.create({});