• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. MaP
    3. Topics

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 64
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by MaP

    • M

      Rest API CORS config env.properties

      User help
      • rest api cors • • MaP
      6
      0
      Votes
      6
      Posts
      1.4k
      Views

      MattFoxM

      @MaP Understandable, that's why I went with the reverse proxy route, using ip tables is too low level in the OSI for the CORS related issues in the application layer.
      You may be able to set the env.properties to set the ip address of the interface you're trying to access to force it to only listen on that host ip address. See if that bears any fruit...

      Fox

    • M

      User Permissions disappearing

      Mango General
      • permissions bug dashboard user • • MaP
      3
      0
      Votes
      3
      Posts
      1.1k
      Views

      CraigWebC

      Hi @MaP just to add to what @joeamiraglia said, if you are using a persistent TCP pair then you should either override the permissions or change them from the publishing mango instance. if they are not overridden and you change them on the receiving end, then the next time the pair syncs they will revert back to the permissions configured on the publishing instance.

      I personally prefer changing them at the publishing instance as this does not affect the data point runtime, so events will not get reset.

    • M

      JWT JSON Web Token Transfer

      User help
      • filesystem jwt • • MaP
      3
      0
      Votes
      3
      Posts
      865
      Views

      MattFoxM

      @MaP what does your application do?
      More than happy to bounce ideas!
      Alternatively, give me a PM and we can discuss privately if it's sensitive

      Fox

    • M

      Mango Fan Control - thermal shutdown

      User help
      • hardware temperature cpu fan • • MaP
      1
      0
      Votes
      1
      Posts
      443
      Views

      No one has replied

    • M

      Virtual Data Source Disabled on Reboot / Lifecycle terminating

      User help
      • • • MaP
      8
      0
      Votes
      8
      Posts
      1.6k
      Views

      MattFoxM

      @MaP Sorry for the late reply, for some reason I'm not receiving notifications...
      Yes, thermal shutdown can definitely be a faulty fan. that and how the unit is stored.
      They are usually the leading causes of the ES units failing (maybe IO as well?)
      Get yourself a replacement if you can, they're usually around $5 USD mark...
      A dead give away is the noise of the bearings in the fan itself.

      Also how is the unit stored? is it in an open air case or is it sealed with an IP rated box that gets really muggy.
      I do know the ED units are prone to overheating, but they have a guts load more kick than the GT's spineless raspberry pi 3

      Fox

    • M

      Mango Crash - No Restart Flag

      User help
      • • • MaP
      2
      0
      Votes
      2
      Posts
      654
      Views

      M

      02e1fb21-f4ca-4a17-874b-aec38f17d8eb-image.png

    • M

      REST V1/V2 Update Point Values help

      User help
      • • • MaP
      3
      0
      Votes
      3
      Posts
      879
      Views

      MattFoxM

      Correct, you were using the wrong api url.

    • M

      HTTP Builder with Basic Auth & Client-Cert

      User help
      • • • MaP
      9
      0
      Votes
      9
      Posts
      1.5k
      Views

      MattFoxM

      Hey if it were easy anyone could do it!
      I'm sure you've got this. Best of luck MaP!

      Fox

    • M

      CSV with 1 minute rollup auto emailed via Meta Source

      User help
      • • • MaP
      21
      0
      Votes
      21
      Posts
      3.3k
      Views

      MattFoxM

      Thanks Phil, I should have asked you about that months ago. Having no timestamp with the values turned me away from using it.

    • M

      Parsing JSON for Point values

      How-To
      • • • MaP
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      phildunlapP

      Hi MaP,

      Is the key "prices" unique in the JSON? If so, you could use a regex like.... "prices": (.*?\}\]) I think, value index 1. That'll capture the list, which can then be parsed in a script...

      if( scriptRuntime.time < httpPoint.time ) { var pricesList = JSON.parse( httpPoint.value ); for( var k = 0; k < pricesList.length; k+=1 ) { var time = Date.parse( pricesList[k].starts ); if( isNaN(time) ) continue; //Consider error handling? outputPoint.set( priceList[k].spotEnergyPriceDollarsPerMWh, time ); } scriptRuntime.set( scriptRuntime.value + 1 ); }

      Where output point is either a numeric scripting point or a settable virtual point, and scriptRuntime is a multistate scripting point I am setting to see if newer data has arrived. You may wish to turn that point to not log. You could also do something in the loop like if( time <= outputPoint.time ) continue; to prevent extra work. The script would be on a cron similar to the polling rate of the http data source.

      Edit: In Mango 3.2 (which should be released next week) we've added the ability for scripting points to trigger the script, which would eliminate the need for the scriptRuntime point. We've also added the ability for meta points or point links to call the set() function.

    • M

      Trouble Porting Dashboard from Demo Area

      Dashboard Designer & Custom AngularJS Pages
      • • • MaP
      18
      0
      Votes
      18
      Posts
      3.9k
      Views

      phildunlapP

      There is a setting in your developer tools that can disable caching while you have the developer tools open. I would encourage you to check that and keep your developer tools open during development, both for the cache and seeing anything that is being printed to the console.

    • M

      Mango ES crashed during Upgrade

      Mango Automation general Discussion
      • • • MaP
      6
      0
      Votes
      6
      Posts
      2.0k
      Views

      M

      Thanks Joel I will submit a support ticket today - the ES was being upgraded from core 2.7.2 to the latest available version.

    • M

      Mango Enterprise Server Timeout

      Mango Automation general Discussion
      • • • MaP
      4
      0
      Votes
      4
      Posts
      1.8k
      Views

      JoelHaggarJ

      Look in your /logs/ma.log file for errors. There might be something more specific there.

    • M

      Mango Persistent TCP publisher constantly resets connection

      User help
      • • • MaP
      26
      0
      Votes
      26
      Posts
      6.9k
      Views

      M

      I recently raised a support ticket for this - please disregard the Support Ticket - we applied this fix to the enterprise mango and the problem seems to have gone .

      We also applied this to the maintenance events table. I think during our upgrade from H2 -> MySQL this problem occurred.

      Thankyou for your help and suggestions for getting this problem fixed.

      0_1478659845558_upload-02d5adf1-a389-4a50-b27e-af25a2de1a95