Skip to content

Commit 7879336

Browse files
author
Aravindan Vijayan
committedAug 15, 2017
AMBARI-21657 : Ambari does not display metric data on widgets when the JMX path contains the '-' character. (avijayan)
1 parent c802a29 commit 7879336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ambari-web/app/mixins/common/widgets/widget_mixin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ App.WidgetMixin = Ember.Mixin.create({
4242
* @type {RegExp}
4343
* @const
4444
*/
45-
VALUE_NAME_REGEX: /(\w+\s+\w+)?[\w\.\,\:\=\[\]]+/g,
45+
VALUE_NAME_REGEX: /(\w+\s+\w+)?[\w\.\,\-\:\=\[\]]+/g,
4646

4747
/**
4848
* @type {string}

0 commit comments

Comments
 (0)
Please sign in to comment.