Reference Source

js/metrics/base/metrics_collector.js

  1. // NPM IMPORTS
  2. import assert from 'assert'
  3.  
  4. // COMMON IMPORTS
  5. import T from 'devapt-core-common/dist/js/utils/types'
  6. import Settingsable from 'devapt-core-common/dist/js/base/settingsable'
  7.  
  8. // SERVER IMPORTS
  9. import runtime from '../../base/runtime'
  10.  
  11.  
  12. /**
  13. * Contextual constant for this file logs.
  14. * @private
  15. * @type {string}
  16. */
  17. const context = 'server/metrics/base/metrics_collector'
  18.  
  19.  
  20. /**
  21. * Metrics collector status:Is created.
  22. * @private
  23. * @type {string}
  24. */
  25. const STATUS_CREATED = 'CREATED'
  26.  
  27. /**
  28. * Metrics collector status:Is initialized.
  29. * @private
  30. * @type {string}
  31. */
  32. const STATUS_INITIALIZED = 'INITIALIZED'
  33.  
  34. /**
  35. * Metrics collector status:Is closed.
  36. * @private
  37. * @type {string}
  38. */
  39. const STATUS_CLOSED = 'CLOSED'
  40.  
  41.  
  42.  
  43. /**
  44. * Metrics collector base class.
  45. *
  46. * @author Luc BORIES
  47. * @license Apache-2.0
  48. */
  49. export default class MetricsCollector extends Settingsable
  50. {
  51. /**
  52. * Metrics collector constructor.
  53. *
  54. * @param {Immutable.Map} arg_settings - instance settings map.
  55. * @param {string} arg_log_context - trace context string.
  56. *
  57. * @returns {nothing}
  58. */
  59. constructor(arg_settings, arg_log_context)
  60. {
  61. super(arg_settings, (arg_log_context ? arg_log_context : context))
  62. /**
  63. * Class test flag.
  64. * @type {boolean}
  65. */
  66. this.is_metrics_collector = true
  67. /**
  68. * Metrics collector status.
  69. * @private
  70. * @type {string}
  71. */
  72. this.$state = STATUS_CREATED
  73. /**
  74. * Metrics server name.
  75. * @type {string}
  76. */
  77. this.metrics_server_name = undefined
  78.  
  79. /**
  80. * Metrics reducer instance.
  81. * @type {MetricsReducer}
  82. */
  83. this.metrics_reducer = undefined
  84. /**
  85. * Metrics state instance.
  86. * @type {MetricsState}
  87. */
  88. this.metrics_state = undefined
  89. }
  90. /**
  91. * Initialize metrics collector.
  92. *
  93. * @returns {nothing}
  94. */
  95. init()
  96. {
  97. this.$state = STATUS_INITIALIZED
  98. }
  99.  
  100.  
  101.  
  102. /**
  103. * Send metrics message.
  104. *
  105. * @param {string} arg_type - metrics type string.
  106. * @param {array} arg_values - metrics values array.
  107. *
  108. * @returns {boolean}
  109. */
  110. send_metrics(arg_type, arg_values)
  111. {
  112. if (!this.metrics_server_name)
  113. {
  114. this.metrics_server_name = runtime.node.get_metrics_server().get_name()
  115. // console.log(context + ':send_metrics:metrics_server_name:type=%s srv=%s', arg_type, this.metrics_server_name)
  116. }
  117.  
  118. // console.log(context + ':send_metrics:type=%s srv=%s', arg_type, this.metrics_server_name)
  119. return runtime.node.send_metrics(this.metrics_server_name, arg_type, arg_values)
  120. }
  121. /**
  122. * Flush pending metrics records.
  123. *
  124. * @returns {nothing}
  125. */
  126. flush()
  127. {
  128. }
  129. /**
  130. * Flush and close the metrics collector.
  131. *
  132. * @returns {nothing}
  133. */
  134. close()
  135. {
  136. this.flush()
  137. this.$state = STATUS_CLOSED
  138. delete this.metrics_reducer
  139. delete this.metrics_state
  140. this.metrics_reducer = undefined
  141. this.metrics_state = undefined
  142. }
  143. /**
  144. * Get the metrics collector status: CREATED, INITIALIZED, CLOSED.
  145. *
  146. * @returns {string} _ status string
  147. */
  148. get_status()
  149. {
  150. return this.$state
  151. }
  152. /**
  153. * Get the metrics collector status: CREATED, INITIALIZED, CLOSED.
  154. *
  155. * @returns {string} _ status string
  156. */
  157. get_state_values()
  158. {
  159. assert( T.isObject(this.metrics_state) && this.metrics_state.is_metrics_state, context + ':get_state_values:bad state object')
  160. return this.metrics_state.get_values()
  161. }
  162. /**
  163. * Process a metrics record.
  164. *
  165. * @param {MetricsRecord} arg_metrics_record - metrics record.
  166. *
  167. * @returns {nothing}
  168. */
  169. process_record(arg_metrics_record)
  170. {
  171. assert( T.isObject(arg_metrics_record) && arg_metrics_record.is_metrics_record, context + ':get_state_values:bad state object')
  172. if (arg_metrics_record.get_name() == this.get_name())
  173. {
  174. this.process_values(arg_metrics_record.get_values())
  175. }
  176. }
  177. /**
  178. * Process metrics record values.
  179. *
  180. * @param {object} arg_metrics_values - metrics record values.
  181. *
  182. * @returns {nothing}
  183. */
  184. process_values(arg_metrics_values)
  185. {
  186. this.metrics_state = this.metrics_reducer.reduce(this.metrics_state, arg_metrics_values)
  187. }
  188. }