step3_pollData.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. module.exports = new Ember.Set([
  19. {
  20. name: '192.168.1.1',
  21. status: 'error',
  22. cpu: '2',
  23. memory: '2'
  24. },
  25. {
  26. name: '192.168.1.2',
  27. status: 'success',
  28. cpu: '4',
  29. memory: '4'
  30. },
  31. {
  32. name: '192.168.1.3',
  33. status: 'error',
  34. cpu: '2',
  35. memory: '2'
  36. },
  37. {
  38. name: '192.168.1.4',
  39. status: 'success',
  40. cpu: '2',
  41. memory: '4'
  42. },
  43. {
  44. name: '192.168.1.5',
  45. status: 'success',
  46. cpu: '2',
  47. memory: '4'
  48. },
  49. {
  50. name: '192.168.1.6',
  51. status: 'success',
  52. cpu: '4',
  53. memory: '8'
  54. },
  55. {
  56. name: '192.168.1.7',
  57. status: 'success',
  58. cpu: '4',
  59. memory: '4'
  60. },
  61. {
  62. name: '192.168.1.8',
  63. status: 'success',
  64. cpu: '4',
  65. memory: '2'
  66. },
  67. {
  68. name: '192.168.1.9',
  69. status: 'success',
  70. cpu: '2',
  71. memory: '4'
  72. },
  73. {
  74. name: '192.168.1.10',
  75. status: 'success',
  76. cpu: '4',
  77. memory: '2'
  78. },
  79. {
  80. name: '192.168.1.11',
  81. status: 'success',
  82. cpu: '2',
  83. memory: '2'
  84. },
  85. {
  86. name: '192.168.1.12',
  87. status: 'success',
  88. cpu: '2',
  89. memory: '4'
  90. },
  91. {
  92. name: '192.168.1.13',
  93. status: 'success',
  94. cpu: '4',
  95. memory: '8'
  96. }
  97. ]);