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.

  • Charting number of events over time

    4
    0 Votes
    4 Kiriman
    1k Lihat
    MattFoxM
    Just a thought, but is there not an internal mango datapoint you can take a snapshot of with a meta datapoint? Either that or make api calls and store the result. At least then you could graph that however you like. Nice idea with the SQL query Ralf Fox
  • Looking for one on one support.

    1
    0 Votes
    1 Kiriman
    374 Lihat
    Tiada jawapan
  • Set up-datasource

    2
    0 Votes
    2 Kiriman
    411 Lihat
    MattFoxM
    Not possible. there is a blob field which mango stores datasource instance info into. If you want dynamic, use the mangoAPI Fox
  • Unsupported IP protocol issue while reading modbus data source

    6
    1 Votes
    6 Kiriman
    1k Lihat
    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 Kiriman
    870 Lihat
    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?
  • Topik ini dipadam!

    1
    0 Votes
    1 Kiriman
    8 Lihat
    Tiada jawapan
  • "No response from slave ..." errors before MySQL backup starts

    2
    1 Votes
    2 Kiriman
    671 Lihat
    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 Kiriman
    900 Lihat
    R
    Thanks Matt! Best, Rodrigo
  • 0 Votes
    2 Kiriman
    520 Lihat
    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 Kiriman
    604 Lihat
    M
    @MattFox thanks.
  • Menu Folders showing blank pages

    1
    0 Votes
    1 Kiriman
    349 Lihat
    Tiada jawapan
  • Point variable use index

    8
    0 Votes
    8 Kiriman
    2k Lihat
    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 Kiriman
    431 Lihat
    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 Kiriman
    1k Lihat
    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 Kiriman
    420 Lihat
    Tiada jawapan
  • Topik ini dipadam!

    1
    0 Votes
    1 Kiriman
    1 Lihat
    Tiada jawapan
  • Error while selecting mailing list at the email event handler

    1
    0 Votes
    1 Kiriman
    348 Lihat
    Tiada jawapan
  • Mango v4.0.0.beta7 LDAP and HTTPS do not work together

    4
    1 Votes
    4 Kiriman
    471 Lihat
    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 Kiriman
    523 Lihat
    Tiada jawapan
  • Thread Pool sizes

    5
    0 Votes
    5 Kiriman
    1k Lihat
    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