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.

  • how to build a New Data Source from SQL

    3
    0 Votes
    3 Posts
    2k Views
    C
    I was not so clear with this thing, but it do solved! here is my solution: "connectionUrl":"jdbc:mysql://localhost:3306/test", "driverClassname":"com.mysql.jdbc.Driver", Note: replace "localhost" "3306" "test" if needed.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • Data point value

    10
    0 Votes
    10 Posts
    3k Views
    phildunlapP
    I'm not sure how your smart smoke detector is working, maybe it has a delay before it rings the alarm? Lots of smoke detectors work by having some radioactive Americium ionizing air, see: https://en.wikipedia.org/wiki/Americium#Ionization-type_smoke_detector At some point they run out. It was an side comment that smoke detectors are both imperfect and fail eventually. Some laser based smoke detectors can be easily fooled by sufficient dust in the air!
  • A problem in [set data] [dataSource-HTTP receiver]

    6
    0 Votes
    6 Posts
    2k Views
    C
    @craigweb thank you ! this problem solved!
  • Some basic questions about Mango Public Code

    3
    0 Votes
    3 Posts
    2k Views
    C
    thank you! I think I need to improve myself for some time. It's simpler to use Mango.
  • is there have UDP in publisher?

    6
    0 Votes
    6 Posts
    2k Views
    C
    I think I understand. Thank you very much!
  • need help to start

    5
    0 Votes
    5 Posts
    2k Views
    C
    thank you all! I implemented the configuration of virtual data sources. this make me happy! these website help me a lot(Although my internet speed is not very good)
  • Use https instead of http - Mango Automation

    3
    0 Votes
    3 Posts
    1k Views
    MattFoxM
    There is also this if you're running on a server and have other web based applications running simultaneously. https://forum.infiniteautomation.com/topic/2875/has-anyone-used-let-s-encrypt-for-https-ssl-any-suggestions/10
  • Log point values only when "told" to do so...

    3
    0 Votes
    3 Posts
    2k Views
    B
    perfect! Not sure how I missed About Mango Java Script - thank you!
  • Advice on accessing page simultaneously with multiple browsers

    9
    0 Votes
    9 Posts
    3k Views
    B
    point taken!
  • How to Configure New Permission Group

    2
    0 Votes
    2 Posts
    2k Views
    Jared WiltshireJ
    Just enter any new permission string directly into the text box, the values are separated by commas.
  • 0 Votes
    11 Posts
    4k Views
    phildunlapP
    I suspect the reason you had the older, unchanging data prior to 6 PM in the report is that the time period type selected is "Previous" which will be distinct by "Past" by aligning to the previous period boundary (so, midnight for days, changes the end time) before subtracting the period to get the start time.
  • Audio or alarm sound not working in the Events page.

    7
    0 Votes
    7 Posts
    3k Views
    CraigWebC
    Hi There are instructions on how to do a manual upgrade on the help site scroll to the bottom of the page: https://help.infiniteautomation.com/how-to-upgrade-mango/ Remember to make a backup of your entire mango folder so that you have a fallback.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    11 Views
    No one has replied
  • ma-point-query is not updating

    2
    0 Votes
    2 Posts
    1k Views
    Jared WiltshireJ
    @sstuhlmann check your Chrome dev tools betwork tab to see what REST API requests for data points are actually issued. If it is like you say you can stop the query running until you retrieve your device name by using a ng-if e.g. <ma-point-query ng-if="$ctrl.devName"> Alternatively do something like this, so that if devName is undefined it queries for the deviceName being null instead (which should return 0 results) <ma-point-query query="{deviceName:$ctrl.devName || null}"> Although what I suspect is actually happening is that the query is not exact, I think that type of query is actually a fuzzy query, it will search for deviceName LIKE %devName% in the SQL database. Try this - <ma-point-query query="{deviceName:$ctrl.devName, $exact: true}">
  • Question about point query performance and filtering

    10
    0 Votes
    10 Posts
    3k Views
    MattFoxM
    Glad I could be of help, feel free to ask if you hit any snags with any RQL strings.
  • Custom modules in deshboard designer menu

    7
    0 Votes
    7 Posts
    3k Views
    S
    Yes, I am writing completely independent modules with definition java files. I'm currently just running development and testing locally. Once I build my new module (which lists module-parent as its parent), I just drop the zip onto my MangoES. I'm currently working on two modules. One is a better and more standardized deviceConfig/templating module. And the second is a graphical gauges one which wraps ma-gauge and uses the DP tags to dynamically load different layouts. Like so: [image: LjNky6V.png] The injector will be great. Should work out for me nicely. At some point I will look at publishing my modules to the store. But they aren't quite ready for prime time.
  • Custom dashboard failed to load adminTemplate.

    5
    0 Votes
    5 Posts
    2k Views
    G
    @jared-wiltshire said in Custom dashboard failed to load adminTemplate.: /user-ui/adminTemplate/ Okay, Thanks @Jared-Wiltshire
  • Optimizing semi-contiguous reads for modbus

    7
    0 Votes
    7 Posts
    5k Views
    N
    My first post was a link with no description, so it was censored.
  • DeadBanding data streams, ideas / thoughts / comments?

    3
    0 Votes
    3 Posts
    1k Views
    phildunlapP
    Some more information: https://help.infiniteautomation.com/data-point-and-logging-settings/ but dated so far as not having the ON_CHANGE_INTERVAL setting at that time.