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.

  • "Point value may not be reliable"

    6
    0 Votes
    6 Posts
    3k Views
    phildunlapP
    Certainly! Glad you got it resolved. Be sure to keep an eye on the data source event levels in the future while troubleshooting!
  • Using JSON Store for Data Point tagging - Can it be done?

    4
    0 Votes
    4 Posts
    1k Views
    Jared WiltshireJ
    point is the variable name I gave to the meta data point the script is in. It defaults to my I believe, there is a text box for it on the meta data point edit page.
  • SNMP set-request sent with wrong community

    2
    0 Votes
    2 Posts
    878 Views
    phildunlapP
    Hi Dovydas, I have sent you an email!
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    2 Views
    No one has replied
  • webcam view

    3
    0 Votes
    3 Posts
    2k Views
    Jared WiltshireJ
    @dovydasz If you are just trying to put a live view of the camera onto your dashboard you can probably use a simple HTML5 <video> tag as suggested by Maxim. It will depend on the camera and the codec it uses, I suggest you consult your camera's documentation. The HTTP image data source can save a frame from your video every x seconds provided it provides its output as an image via HTTP. This is not really well suited to video though.
  • Broke my access to the Mango, cannot get in

    4
    0 Votes
    4 Posts
    1k Views
    P
    You're welcome!
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    5 Views
  • Issues with latest update?

    6
    0 Votes
    6 Posts
    1k Views
    P
    Hey Phil, I let the mango do all of its own upgrades that's correct. Things seem to be ok, I'm not sure why I wasn't seeing any data coming in, could be something to do with AWS though. Anyway it seems ok and is working. I did however delete the folder as you suggested so perhaps that helped. I'll try the JSON receiver again and get back to you.
  • Error in UI

    17
    0 Votes
    17 Posts
    5k Views
    J
    @joelhaggar Found it! Found multiple java installs, removed all and reinstalled 1.8.0_152. Everything working now. Thanks for the late night help
  • Is the Environment Canada Module available in V3??

    8
    0 Votes
    8 Posts
    2k Views
    P
    Answered my own question :)
  • Retaining point value

    6
    0 Votes
    6 Posts
    2k Views
    phildunlapP
    Certainly, glad to hear it's behaving.
  • Point values limited to 5001 values error

    2
    0 Votes
    2 Posts
    850 Views
    JoelHaggarJ
    Here is the documentation on how to use the Date bar to adjust the time range or Rollup. https://help.infiniteautomation.com/date-bar/ You should also check your logging settings as you may be logging more data than needed. https://help.infiniteautomation.com/data-point-and-logging-settings/ Also, edit your data points and set a default rollup so it's used on the UI automatically.
  • Intesis integration

    6
    0 Votes
    6 Posts
    2k Views
    phildunlapP
    Great! You may consider placing the m2m2-core-3.2.2.zip into your Mango/ directory again and then simply restart Mango. It will automatically perform an upgrade if there is a new core zip in the Mango/ directory. It's possible there were other JARs update and you'd have duplicates of those too, which would produce uncertain results.
  • SNMP camera status

    2
    0 Votes
    2 Posts
    915 Views
    phildunlapP
    Hi Manohar, welcome to the forum! It's best to give your topic a title, as the title is usually the link text on various pages. The topic is above the post body when creating a thread. i'm not really certain what you're asking about. Yes there is an SNMP data source in Mango (you must have the SNMP module installed, which you can get from them modules page or see if it's already installed), and it should be able to request your camera's SNMP endpoints. Data sources are created on the page linked to in Administration --> Data Sources or at /data_sources.shtm
  • Is there a way to track which user changed the setting of a Point?

    7
    0 Votes
    7 Posts
    2k Views
    Jared WiltshireJ
    @Balistar I'm not really following. Point values which are recorded from a remote device e.g. polling a modbus slave will not contain an annotation. Setting a point's value via the UI should record an annotation.
  • An error occurred while logging in - Connection refused

    6
    0 Votes
    6 Posts
    2k Views
    danD
    The Oracle version of the JDK worked, thanks heaps. :-}
  • Setting Min/Max levels dynamically for tanks

    5
    0 Votes
    5 Posts
    2k Views
    A
    Thank you - that was exactly what I needed.
  • This topic is deleted!

    3
    0 Votes
    3 Posts
    9 Views
  • BACnet high limit false alarms or incorrect display

    2
    0 Votes
    2 Posts
    1k Views
    phildunlapP
    Hi Pedro, The "Convert unit for display" is only for display purposes. So, the limit does not use the converted value. Therefore, all four of the things you specifically asked about do not use the post-converted value. The issue with the limit lines not being converted is here: https://github.com/infiniteautomation/ma-core-public/issues/684 as I suspect you know. I did just recently fix that but it isn't released yet. I'll email you an override.
  • Events Table refreshing

    4
    0 Votes
    4 Posts
    2k Views
    Jared WiltshireJ
    So you will need to add a custom AngularJS module as per this link - https://help.infiniteautomation.com/getting-started-with-a-user-module/ This component will just watch for new events of a certain level and play the sound, you can customize it to your needs. define(['angular', 'require'], function(angular, require) { 'use strict'; var userModule = angular.module('userModule', ['maUiApp']); userModule.component('eventAudio', { bindings: { audioFile: '@', eventLevel: '@' }, controller: ['maEvents', '$scope', function(maEvents, $scope) { this.$onInit = () => { maEvents.notificationManager.subscribe((event, mangoEvent) => { if (mangoEvent.alarmLevel === this.eventLevel) { new Audio(this.audioFile).play(); } }, $scope, ['RAISED']); }; }] }); return userModule; }); // define Use it like this <event-audio audio-file="/audio/critical.mp3" event-level="CRITICAL"></event-audio> If this is all too complicated, I might add something similar to this into the UI module for the next release so sit tight.