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.

  • "Rollup" on Point Properties

    2
    0 Votes
    2 Posts
    956 Views
    phildunlapP
    Hi psysak, bring it on! In the new UI, we'll be using that as the default for the point most places. You should be able to see 'Point default' as a rollup option in the date bar, which should then use the point's configured rollup for the charts and such on the pages in the new UI.
  • REGEX with Serial Input Data Point

    9
    0 Votes
    9 Posts
    3k Views
    phildunlapP
    Hi Tom, At the bottom of the edit point page is a section for event detectors. You're either looking for a Change or Update detector. After the event detector is created, you will need to create an Email event handler on the /event_handlers.shtm page for the event, and you will need to configure your SMTP server in the system settings.
  • Bacnet - Extracting Bit Values

    2
    0 Votes
    2 Posts
    756 Views
    phildunlapP
    Hi Wingnut2.0, The object type is the property that determines how the read is performed in BACnet. There are binary object types in Mango, but there are not any options to extract a bit from, say, an Analog Input in BACnet that I'm aware of. You can of course read in the value as its proper data type, though, and then use a meta point or script to bit bang out the bits you're interested in.
  • Problem Creating Point Hierarchy via /point_hierarchy.shtm

    1
    0 Votes
    1 Posts
    611 Views
    No one has replied
  • Datasources do not Auto Start

    5
    0 Votes
    5 Posts
    1k Views
    M
    Oh awesome then it's en easy fix; I've removed the safe file, thanks Phil =)
  • Creating data points for a postgresql data source

    3
    0 Votes
    3 Posts
    1k Views
    phildunlapP
    Hi eksantrik, Might you happened to have seen my post in this thread: https://forum.infiniteautomation.com/topic/3115/sql-data-source-query/2 It may have some relevant information / inspiration. The connection between the SQL points is the 'column name' on the point. If 'Row-based query' is not checked on your data source, then the point will get the value in the value column if its column name matches the ID column. If you are doing a row-based query, then it's the first selected column contains the identifier.
  • Mango polling problem

    8
    0 Votes
    8 Posts
    3k Views
    S
    Yeah, I've tried to upload it here with the "Upload File" option but it says I have no permission to do that. I've sent logs to the support address.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    68 Views
    No one has replied
  • My 485 comm port vanished

    8
    0 Votes
    8 Posts
    1k Views
    phildunlapP
    Hanging up meaning Mango isn't running? Is there any indication of the cause in the logs?
  • Bulk edit Point Hierarchy

    2
    0 Votes
    2 Posts
    735 Views
    phildunlapP
    Hi psysak, In the upcoming release we put a "path" property into the data point's JSON that is /path/to/folder for the import/export tool and endpoints, but not into the CSV. I can write a little python script here, if you like, that converts a CSV with a /path/to/folder column into a hierarchy JSON, if you would like. Edit: It will probably be added into the CSV model in 3.4, but I have no projection when that will be as we're trying to wrap 3.3 up currently.
  • Enterprise Install Web UI Errors

    7
    0 Votes
    7 Posts
    2k Views
    Jared WiltshireJ
    @mihairosu said in Enterprise Install Web UI Errors: Well it's not a space issue, and I sure hope there's no disk corruption. We are using CEPH and it's supposed to be somewhat immune to that, unless of course it's software create corruption. I look forward to the updates then. Yeah I was just throwing that out there, Phillip obviously knows more about this particular issue.
  • Question about Scripting Data Source

    9
    0 Votes
    9 Posts
    3k Views
    phildunlapP
    Yes Meta points have this behavior as well - they reuse their script engines. Meta script execution is all within a function block, so var declared variables have limited scope. The pattern works though, as with my test script, var test = this.test; if(typeof test === 'undefined') { p.set(1); test = this.test = "test"; } else if(test === "test") { p.set(2); }
  • Websocket subscription to Events

    2
    0 Votes
    2 Posts
    945 Views
    Jared WiltshireJ
    @Wingnut2-0 Sorry there isn't really any documentation on the WebSockets. The easiest way to see how they work is to use the Chrome developer tools. [image: MOiYmM9.png]
  • Major Errors in Logs, but Everything Seems to Work

    6
    0 Votes
    6 Posts
    1k Views
    phildunlapP
    Hmm. It's possible that it's caused by another error. If you aren't seeing any, you could try launching Mango from the command line. It's possible the answer is escaping to stderr. If it isn't the pathPrefix being null, my next suspicion would be an invalid configuration on one of the points. But, I would have expected you to have gotten a log message from those things.
  • Choosing "Data Sources" returns "Server Error"

    7
    0 Votes
    7 Posts
    2k Views
    P
    Aaannd for anyone else who finds this, as Joel stated, delete the /mango/work directory, all is well
  • File Datasource breaks on file upload

    19
    0 Votes
    19 Posts
    3k Views
    phildunlapP
    This was added and should be released fairly soon.
  • Menu Items Not found

    4
    0 Votes
    4 Posts
    1k Views
    R
    The same thing happened to me last week after changing the user permissions under edit menu "UI — Menu & toolbar". I deleted the standard user and added a new one. My quick solution was to install a backup from the day before...
  • Daily reports - average chart

    4
    0 Votes
    4 Posts
    2k Views
    phildunlapP
    Unlikely that would be added in to the reports module. You can configure such a thing in Excel Reports, and you can email those (but only as attachments). The template model is passed to the template by the ReportChartCreator, https://github.com/infiniteautomation/ma-modules-public/blob/main/Reports/src/com/serotonin/m2m2/reports/web/ReportChartCreator.java If you were to attempt such a thing, you would probably need to do something similar to how the existing "chartName" passes in the src for an image tag, Edit: but, thinking about it, image chart servlet is passed XIDs to real points in the URL, so no, it isn't possible through the template model.
  • How to find Mango ES IP address.

    4
    0 Votes
    4 Posts
    2k Views
    phildunlapP
    Glad to hear it!
  • Scraping an entire data set

    12
    0 Votes
    12 Posts
    3k Views
    Jared WiltshireJ
    @psysak MDN will definitely contain references to a lot of new JavaScript features which aren't available in the Java 8 Nashorn engine which we leverage. Nashorn should be compliant with ECMAScript 5.1. The MDN pages tell you which version of ECMAScript (JavaScript) the feature is supported in. e.g. look under specifications on the JSON.parse() page, it says ECMAScript 5.1 (ECMA-262) The definition of 'JSON.parse' in that specification. Standard Initial definition. Implemented in JavaScript 1.7."