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.

  • mango allowing api requests from api.twilio.com? mango using OpenSSLv3?

    4
    0 Votes
    4 Posts
    2k Views
    P
    Where is it possible to get some information on the integration of the Publisher with Twilio ? Is it possible to send SMS to users instead of e-Mails like standard Mango features ? Best regards, Pascal
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    13 Views
    No one has replied
  • getting value from last line in a logfile

    6
    0 Votes
    6 Posts
    2k Views
    S
    The data source is http retriever. I made a junction link between the directory where the logfile is written and a directory in the mango web directory, so the data in the mango/web/system is the same as in programfiles/auroracommunicator/system. The auroracommunicator/system is the directory where the inverter software puts the logfiles. junction links are easily made with junction link magic : http://www.rekenwonder.com/linkmagic.htm the mango webdirectory is accessable with the http retriever. Point the datasource to the ipaddress and port of youre mango server. ie http://192.168.100.1:8080/system/filename.extension now the file is accesable, i tried the 127.0.0.1 adres, that didn't work the datapoint is like this: [image: s8A0af0.png] this wil do the trick :) now my next challenge put all seperate logfiles in 1 file with the actual value, otherwise i have to configure a data source and data point for each logfile
  • Making a 'logbook' data point?

    1
    0 Votes
    1 Posts
    940 Views
    No one has replied
  • Error: Unable to resolve constructor for: 'dijit.ColorPalette

    8
    0 Votes
    8 Posts
    3k Views
    G
    I found the problem, although the cause is still unknown. There are 3 mobile operator networks in South Africa. Connecting to the mango server over the internet via Vodacom causes this error that prevent datasources from being created at all using any browser on any operating system. The mobile operator must be filtering some Ajax or HTML headers.
  • Smart TV's

    7
    0 Votes
    7 Posts
    3k Views
    L
    Jeremyh, The Co-Star worked very well. It will work with ether wifi or wired connections. It put the Chrome browser on the TV so you can go to any internal address you need or go out to the web. It work well with Dglux 2.5 or the Graphic screens. Easy to set up and use. We will be using them for our system. Thanks to all for all the help. Larry
  • Reports module not working

    7
    0 Votes
    7 Posts
    4k Views
    JoelHaggarJ
    I would try removing the reports module on the modules page and then installing it again.
  • Retrieve HTTPS with HTTP retriever

    13
    0 Votes
    13 Posts
    5k Views
    terrypackerT
    Jeremy, Due to the 'login required before getting data' restriction you will have to create an intermediate step that would login, collect the data, then push it to Mango somehow. To my knowledge Mango doesn't have a module that would do this out of the box. Some Ideas: See if you can get/setup a public api for SunnyPortal Write a small script/app in your favorite language that would retrieve the data as you mentioned above Build a custom Mango Module to do this.
  • Suppression of duplicate datapoint value

    4
    0 Votes
    4 Posts
    3k Views
    JoelHaggarJ
    Also note that if you are using the NoSQL database part of Mango enterprise it will prevent duplicate values from happening.
  • Using HTTP Retriever to retrieve data using HTTP GET

    4
    0 Votes
    4 Posts
    2k Views
    JoelHaggarJ
    Right, this works exactly as you describe so to work with that data logger you would need one data source per 5 data points.
  • Problem using Websockets with Safari and solution

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • V2.6 Quantize

    10
    0 Votes
    10 Posts
    4k Views
    hussamH
    I am sure the Quantize checkbox is useful in modbus, my logging type is ON_CHANGE, please test in ON_CHANGE condition
  • User Password Reset

    2
    0 Votes
    2 Posts
    2k Views
    JoelHaggarJ
    No, there isn't a way to do this. It might be possible to come up with a hack using a SQL data point referencing the mango user database. The problem is that the passwords are encrypted so you would need to figure out how to encrypt it before updating the database.
  • Modbus RTU

    5
    0 Votes
    5 Posts
    2k Views
    jeremyhJ
    What is your device? "Modbus TCP" and "Modbus RTU over TCP" are actually two different things.
  • Merging a database backup with new information

    2
    0 Votes
    2 Posts
    2k Views
    JoelHaggarJ
    When you delete a data point in Mango the history will be deleted on the next nightly purge so it's important to resolve the situation before that happens. I'll assume you are using the H2 data for your configuration and the NoSQL for the history. On the system setting page you should see the option to restore the H2 database from a backup. Click the "Get Backups" button to load in a list of available backups. Select the one you want and then click the Restore database button. If the database you restore has the deleted data point in it then all should be back to normal and your data should still be available for the data point. [image: 4mAKFU3.png]
  • ASCII serial data source doesnt recognize message

    3
    0 Votes
    3 Posts
    1k Views
    A
    Hey terry it helped a lot. Now I´m able to get each field separatedly. I used the regex ^L1(?:,(\d+)){N} , where N is the column after L1 that I will get. Thanks so much for helping , hope this regex might be useful for somebody.
  • SQL data source to query MangoES H2

    5
    0 Votes
    5 Posts
    3k Views
    terrypackerT
    I was just playing around with this and found that if you want to use the query 'select count() from datapoints' you need to use the data source as a 'non row based query' and then set the column name to 'Count()'. You can see this in the test utility if you look at the Column name, its shown as COUNT(*) when you test the query. You could also use this query if you want to have a specific column name: select count(*) as pointcount from datapoints; As for your last question you can put this all together like this: SELECT ( SELECT COUNT(*) FROM datapoints ) AS pointCount, ( SELECT COUNT(*) FROM datasources ) AS datasourceCount, ( SELECT COUNT(*) FROM events ) AS eventCount, ( SELECT COUNT(*) FROM eventHandlers ) AS eventHandlerCount, ( SELECT COUNT(*) FROM users ) AS userCount FROM dual The thing to notice here is the keyword 'dual' at the end, this is required as you cannot perform a select without a from clause and the dual table that all accounts can access for common needs and it has one record. Just make sure you change the data source back to not use the row based query. FYI To format as code just make sure your lines are all indented by a tab or 4 spaces and has whitespace lines above and below.
  • Persistent TCP listener

    3
    0 Votes
    3 Posts
    2k Views
    jeremyhJ
    Hi Terry It is definitely possible to have one listener receiving data from mulitiple publishers, I have done this by accident a few times :-} Do you know whether I can have multiple listeners configured and all using the same port? Would that be recommended? I would like to avoid having too many ports open. Kind regards
  • HTTP Publisher

    2
    0 Votes
    2 Posts
    2k Views
    P
    Peter, You can use the following URL : https://posttestserver.com/post.php Mango will display the URL you can check the data as received by this application. Here is the link to the site explaining details : http://www.posttestserver.com/
  • Excel Report for last 24 hours

    4
    0 Votes
    4 Posts
    3k Views
    JoelHaggarJ
    I think you misunderstood the single cell ranges. You still need a multi cell rage for time stamps and all historical values.. You would then add a single cell range called point2.LastValue and you will get the last value for the data point associated with the names range point2