Commit c7489ab1 authored by Francis Renaud's avatar Francis Renaud
Browse files

NA-660 - Legend under graph (Event Log)

parent 1953b4cd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -952,8 +952,8 @@ func sendEventMobility(event Event) (string, int) {
		log.WithFields(log.Fields{
			"meep.log.component": "ctrl-engine",
			"meep.log.msgType":   "mobilityEvent",
			"meep.log.oldLoc":    oldLocName,
			"meep.log.newLoc":    newLocName,
			"meep.log.oldPoa":    oldLocName,
			"meep.log.newPoa":    newLocName,
			"meep.log.src":       elemName,
			"meep.log.dest":      elemName,
		}).Info("Measurements log")
+0 −4
Original line number Diff line number Diff line
@@ -592,10 +592,6 @@ class DashboardContainer extends Component {
    const extractMobilityEvents = extractPointsOfType(ME_MOBILITY_EVENT);
    const mobilityEvents = epochs.flatMap(extractMobilityEvents);

    if (mobilityEvents.length) {
      console.log('Some mobility events ...');
    }
  
    
    // const height = 600;

+4 −4
Original line number Diff line number Diff line
@@ -88,11 +88,11 @@ import {


// MEEP Controller REST API JS client
// var basepath = 'http://' + location.host + location.pathname + 'v1';
const basepath = 'http://10.3.16.73:30000/v1';
var basepath = 'http://' + location.host + location.pathname + 'v1';
// const basepath = 'http://10.3.16.73:30000/v1';

// const metricsBasePath = 'http://' + location.hostname + ':30008/v1';
const metricsBasePath = 'http://10.3.16.73:30008/v1';
const metricsBasePath = 'http://' + location.hostname + ':30008/v1';
// const metricsBasePath = 'http://10.3.16.73:30008/v1';

const TIME_FORMAT = moment.HTML5_FMT.DATETIME_LOCAL_MS;