diff --git a/client/app/scripts/components/node-details/node-details-control-button.js b/client/app/scripts/components/node-details/node-details-control-button.js index 6e8f1df28f..f1d1f83baf 100644 --- a/client/app/scripts/components/node-details/node-details-control-button.js +++ b/client/app/scripts/components/node-details/node-details-control-button.js @@ -1,6 +1,7 @@ import React from 'react'; import { connect } from 'react-redux'; +import { trackMixpanelEvent } from '../../utils/tracking-utils'; import { doControl } from '../../actions/app-actions'; class NodeDetailsControlButton extends React.Component { @@ -21,6 +22,8 @@ class NodeDetailsControlButton extends React.Component { handleClick(ev) { ev.preventDefault(); + const { id, human } = this.props.control; + trackMixpanelEvent('scope.node.control.click', { id, title: human }); this.props.dispatch(doControl(this.props.nodeId, this.props.control)); } }