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.

  • Page Not Found with Home URL

    3
    0 Votes
    3 Posts
    1k Views
    S
    I had missed setting the permission for the JSON store UI pages and UI menus as you suggested. Thanks Phil.
  • Best way to handle multi-user access

    4
    0 Votes
    4 Posts
    2k Views
    G
    Was there any more info available with regards to LDAP availability? @Jared-Wiltshire
  • Uploading data to off-site URL

    7
    0 Votes
    7 Posts
    2k Views
    Jared WiltshireJ
    @MStangl You can create a PowerShell script which you schedule on your Windows server. I started with a snippet created by the Chrome DevTools, you go to the network tab and find the API request and copy the network request as shown below. [image: 3Kt8ZKh.png] You just need to create an authentication token (on your users page) and add it as a header as shown below. Invoke-WebRequest ` -Uri "http://yourmangohostname:8080/rest/v2/point-values/single-array/time-period" ` -Method "POST" ` -Headers @{"Accept"="text/csv"; "Authorization"="Bearer yourlongtokenthatyougenerated"} ` -ContentType "application/json;charset=UTF-8" ` -Body "{`"dateTimeFormat`":`"yyyy-MM-dd'T'HH:mm:ss.SSSXXX`",`"from`":`"2018-10-23T21:54:58.951Z`",`"to`":`"2018-10-24T21:54:58.952Z`",`"bookend`":true,`"timezone`":`"UTC`",`"fields`":[`"TIMESTAMP`",`"VALUE`"],`"xids`":[`"DP_9004cb57-f1cb-4415-a078-b60999f06c4d`",`"DP_cd2587fa-93ab-492a-9963-e9f5c4e0a40d`",`"DP_915fb444-6133-45eb-a700-4f415662e108`",`"DP_506cab2d-8f10-46ca-90aa-ff9d8f6c0400`"]}" ` -OutFile "myData.csv" You will just need to modify the script so that it gets data relative to the time it runs at and names the output file accordingly. And also obviously make it get the XIDs you are interested in.
  • Point value may not be reliable

    8
    0 Votes
    8 Posts
    2k Views
    Jared WiltshireJ
    @pspivey said in Point value may not be reliable: will i be able to fix the issue on a V2 mango without upgrading to V3? I suggested a fix for backwards compatibility with v2 publishers to one of our developers who was working on it. I'll see what became of it.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    11 Views
    No one has replied
  • HTTP Receiver Point

    13
    0 Votes
    13 Posts
    2k Views
    S
    On Sunday I will try these solutions and I will tell you what I will get . Thank you very very much :)
  • Mango XHR request failed

    2
    0 Votes
    2 Posts
    1k Views
    Jared WiltshireJ
    @glamprecht There should be an error logged in your ma.log file (find it under System Status in the Administration menu). Please post this. You can try using the "Bulk data point edit" page in the new UI if you are on a recent version of Mango.
  • 0 Votes
    1 Posts
    676 Views
    No one has replied
  • IllegalStateException No Server ALPNProcessors!

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Disable publishing at data point config?

    2
    0 Votes
    2 Posts
    924 Views
    phildunlapP
    Hi Alex, No, that's isn't possible. You could have a naming schema or XID schema that made filtering the do-not-publish points out of the publisher's "Add points" table, but there is no way to exclude them entirely from that list.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Mango Rest API - Relinquish Data Point

    3
    0 Votes
    3 Posts
    1k Views
    M
    @phildunlap Thank you for your help! :)
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Charts not working with any of our data points.

    11
    0 Votes
    11 Posts
    2k Views
    phildunlapP
    Thanks for sharing the resolution Bryce! Keeping the pointValues table in check is definitely a necessity for users who don't have the NoSQL module!
  • Easiest way to move data from one instance of Mango to another

    15
    0 Votes
    15 Posts
    3k Views
    phildunlapP
    We moved to email, but the next version of MangoNoSql, 3.5.1, will improve the handling of corruption in the database that is to be merged. This is what caused the buffer overflow exception at the end of the log, and the returning to IDLE state before finishing all the data points. Sorry I keep pasting the entire file within the post, if there's a better way to share it please let me know. Tis better to log the whole log than no log at all!
  • Logging on value change

    9
    0 Votes
    9 Posts
    2k Views
    phildunlapP
    I would think so. Cache control on the functions was added in 3.5. Prior to that they were always using the cache.
  • Cloud Connect - 401 & 403 Errors

    11
    0 Votes
    11 Posts
    2k Views
    Jared WiltshireJ
    By default the client should forward port 22 for SSH which you will need to change to 2222 for a MangoES yes. The web port should default to forwarding the non-SSL web port from the env.properties file however.
  • SQL Database Backup Failure

    3
    0 Votes
    3 Posts
    1k Views
    M
    Okay great! Yeah I've never seen this error since we got Mango, for all these years.
  • Dashboard pages disappear when internet connection lost.

    7
    0 Votes
    7 Posts
    2k Views
    MattFoxM
    Nicely done! I'll get an ES updated and will test with my code.
  • SQL Datasource time override

    3
    0 Votes
    3 Posts
    1k Views
    M
    @phildunlap Hi Philip, convert functions into my select statement work! Thanks Ste