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.

  • Unsupported IP protocol issue while reading modbus data source

    6
    1 Votes
    6 Posts
    1k Views
    usiU
    I checked the multipliers of the data points on your recommendation. IP change occurred due to revision in servers. For this reason, it seems like a problem arising from our querying and processing data other than the data point we target. For now the problem seems to be gone, I will inform you again when the ports are opened, thanks Terry.
  • Http JSON Receiver Datasource

    5
    1 Votes
    5 Posts
    724 Views
    J
    I'm working around this problem @Nurr commented. There is an alternative in mango to this issue? If the index is changing in every Http post?
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • "No response from slave ..." errors before MySQL backup starts

    2
    1 Votes
    2 Posts
    566 Views
    MattFoxM
    Check used threads and pending work items... There appears to be a trend at the moment of items hanging or crashing due to insufficient worker threads available. Fox
  • Event Handler Target Point

    3
    0 Votes
    3 Posts
    752 Views
    R
    Thanks Matt! Best, Rodrigo
  • 0 Votes
    2 Posts
    454 Views
    JoelHaggarJ
    Keep TCP Keep-Alive on a Modbus Data Source is usually the best option and it will keep the TCP socket to the device alive for as long as the data source is enabled. This is not configurable. If you only have one master reading the device and/or your device can support multiple TCP connections this normally works fine.
  • 1 Votes
    3 Posts
    471 Views
    M
    @MattFox thanks.
  • Menu Folders showing blank pages

    1
    0 Votes
    1 Posts
    315 Views
    No one has replied
  • Point variable use index

    8
    0 Votes
    8 Posts
    1k Views
    MattFoxM
    You are over complicating it. Use what I wrote originally as your template and rather than adding html and trying to make angular js evaluate it. $sce is for outputting html, not another directive. I should have looked more closely at what you are doing.... increment a counter then make it ng-repeat n times depending on how big your number value is. app.component("pointCom", { bindings: { point: "<", qty: "@", min: "@", max: "@" }, controller: dataController, controllerAs: "dc", template:` <span>Render</span> <div ng-repeat="idx in dc.sour track by $index"> <ma-get-point-value point-xid="DP_{{idx}}_Meter_kWh" point="dc.pts['c'+idx+'_Meter_kWh']"></ma-get-point-value> <ma-get-point-value point-xid="DP_{{idx}}_Meter_V" point="dc.pts['c'+idx+'_Meter_V']"></ma-get-point-value> <ma-get-point-value point-xid="DP_{{idx}}_Meter_A" point="dc.pts['c'+idx+'_Meter_A']"></ma-get-point-value> </div> ` }); dataController.$inject = ["$scope"] function dataController($scope){ let dc = this let P = dc.point let Q = dc.qty let min = dc.min let max = dc.max let num = 0 this.$onChanges = function() { let p = dc.point dc.sour = [] max = dc.max num = dc.min console.log(school) if (max !== undefined){ Q = max } else { Q = dc.qty } if (p !== undefined){ for (let i=0; i < Q; i++){ num = Number(num) num = num.pad(3) dc.sour.push(num) } console.log(dc.sour) } } Number.prototype.pad = function(size) { let s = String(this) while (s.length < (size || 2)) {s = "0" + s;} return s } } Try that and see how you go. Haven't tested this Fox
  • OPC Datasource REAL data type read problem

    2
    1 Votes
    2 Posts
    355 Views
    CraigWebC
    Hi Nurr This could be a bug but we would need more information on what is happening. If the data source is "not able" to read values there should be an error message or a log entry...
  • H2 to mySQL Error

    4
    0 Votes
    4 Posts
    936 Views
    MattFoxM
    Fair enough, but looking at your error looks like you are trying to overwrite existing columns.
  • Excel Reports date / time selection

    1
    0 Votes
    1 Posts
    365 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Error while selecting mailing list at the email event handler

    1
    0 Votes
    1 Posts
    316 Views
    No one has replied
  • Mango v4.0.0.beta7 LDAP and HTTPS do not work together

    4
    1 Votes
    4 Posts
    341 Views
    terrypackerT
    And what @MattFox said, make your posts readable and you will get better help. A wall of poorly formatted text is very off-putting.
  • Cloud Connect for Dummies

    1
    0 Votes
    1 Posts
    461 Views
    No one has replied
  • Thread Pool sizes

    5
    0 Votes
    5 Posts
    942 Views
    MattFoxM
    Thanks Terry, Ill take up your suggestion of using internal points to gain more insight into our system's behaviour. Hopefully from here I can better tune our system.... Fox
  • Can not login after activating sessionCookie.secure=true

    5
    1 Votes
    5 Posts
    663 Views
    MattFoxM
    I was a bit off the mark. It relates to using the cloud connect module: https://docs-v3.mango-os.com/cloud-connect?rq=sessioncookie if you want a secure flag on your browser, set up SSL or a reverse proxy with ssl at the front. Fox
  • SI Unit Prefixes

    1
    0 Votes
    1 Posts
    394 Views
    No one has replied
  • Possible to remove "(script)" from default point value history?

    1
    0 Votes
    1 Posts
    553 Views
    No one has replied