• Recent
    • Tags
    • Popular
    • Register
    • Login

    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.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website

    Disabled Emailing of alarms and websocket issue

    User help
    3
    12
    3.0k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      Bhanner
      last edited by

      Hi,
      Is it possible to flat out disable the scada's ability to email so that it won't even try? Any alarms on the system will be displayed to an operator and do not need to be emailed so can i disable this feature?

      Also possibly realated to the email issue, i keep getting errors appearing on the console saying it can't send a message periodically
      0_1515542310011_88d3a6c0-8fac-4744-b632-4c7dfea94c19-image.png any ideas how to stop this as when it appears i get tremendous lag on the SCADA?
      Thanks in advance
      Billy

      1 Reply Last reply Reply Quote 0
      • phildunlapP
        phildunlap
        last edited by

        Hi Billy,

        By default, Mango doesn't send emails. You had to have set an Send alarm emails value on your user or a mailing list below the threshhold for that event. If that setting is set to Ignore then that user / mailing list will be ignored for that purpose. After that, you would have had to configure an email event handler for Mango to have attempted to send the message. In which case, you could disable that email handler.

        There is no global toggle to say "don't send any emails ever."

        The websocket message is more likely that a client abruptly terminated the websocket without notification and is only logging it, it shouldn't be raising an event or emailing anyone. You can disable the logging of that message by that class by modifying your Mango/overrides/properties/log4j2.xml file (which you can copy there from Mango/classes/ ) by adding this Logger directive below the similar ones (still in the "Loggers" tag) at the bottom of the file:

        <Logger name="com.serotonin.m2m2.web.mvc.rest.v1.publisher.pointValue.PointValueWebSocketPublisher" level="fatal"/>
        
        B 1 Reply Last reply Reply Quote 0
        • B
          Bhanner @phildunlap
          last edited by Bhanner

          @phildunlap
          Hi Phil,
          i have done this and the error is still appearing and causing the page to become unresponsive on the browser and causing lag.
          <Configuration packages="com.serotonin.m2m2.rt.console">
          <Appenders>
          <Console name="stdout" target="SYSTEM_OUT">
          <PatternLayout pattern="%-5p %d{ISO8601} (%C.%M:%L) - %m %n"/>
          </Console>
          <RollingRandomAccessFile name="logfile" filePattern="${sys:ma.home}/logs/%d{MM-dd-yyyy}-%i.ma.log" fileName="${sys:ma.home}/logs/ma.log">
          <PatternLayout pattern="%-5p %d{ISO8601} (%C.%M:%L) - %m %n"/>
          <Policies>
          <OnStartupTriggeringPolicy />
          <TimeBasedTriggeringPolicy />
          <SizeBasedTriggeringPolicy size="5MB"/>
          </Policies>
          <DefaultRolloverStrategy>
          <Delete basePath="${sys:ma.home}/logs" >
          <IfFileName regex=".*.ma.log" />
          <IfAccumulatedFileCount exceeds="20"/>
          </Delete>
          </DefaultRolloverStrategy>
          </RollingRandomAccessFile>
          <MangoFrontendAppender name="frontend">
          <PatternLayout pattern="%-5p %d{ISO8601} (%C.%M:%L) - %m %n"/>
          </MangoFrontendAppender>
          <Async name="async" includeLocation="true">
          <AppenderRef ref="logfile"/>
          <AppenderRef ref="stdout" />
          <AppenderRef ref="frontend" />
          </Async>
          </Appenders>
          <Loggers>
          <Logger name="org" level="error"/>
          <Logger name="com.serotonin.m2m2" level="info"/>
          <Logger name="com.infiniteautomation" level="info"/>
          <Root level="error">
          <AppenderRef ref="async"/>
          </Root>
          <Logger name="com.serotonin.m2m2.web.mvc.rest.v1.publisher.pointValue.PointValueWebSocketPublisher" level="fatal"/>
          </Loggers>
          </Configuration>
          Regards
          Billy

          Edit: Is there something i can do to prevent the error in the first place?

          1 Reply Last reply Reply Quote 0
          • phildunlapP
            phildunlap
            last edited by

            You shouldn't still be seeing the log message with that Log4J configuration. Did you restart Mango or reload the Log4J configuration on the System Settings page (you probably will still need to use the old system settings page, /system_settings.shtm ).

            I wonder, are you accessing this instance through a proxy? Are you using HTTPS?

            B 1 Reply Last reply Reply Quote 0
            • B
              Bhanner
              last edited by

              Hi Phil,
              I'm accessing the SCADA via chrome i've just noticed i have https anywhere extension enabled so that will be forcing the page to https if it can.
              The scada is rebooted very regularly as it's currently running on a laptop. i have now reloaded the configuration from the system setting page and rebooted the scada, and removed the https force, to see if the error still occurs.

              1 Reply Last reply Reply Quote 0
              • B
                Bhanner @phildunlap
                last edited by Bhanner

                @phildunlap
                I have uploaded the Log File from the scada if that helps, The scada boots fine then i open the webpage and it works for about 2 mins then the scada freezes and the error appears on the console before the page crashes and i have force shutdown the SCADA
                0_1516126090122_d036ffb4-4e48-454c-a6f4-5cc8edd14264-image.png

                Log File:
                https://drive.google.com/file/d/1slM9UnJQKMcDG28ZnGji0iNWnjbT_cC6/view?usp=sharing
                Regards
                BIlly

                1 Reply Last reply Reply Quote 0
                • Jared WiltshireJ
                  Jared Wiltshire
                  last edited by

                  Id suggest there is something amiss on your dashboard page that is causing Chrome to lock up. This would explain the websocket messages in your log file as the Chrome tab/process is being killed after it freezes up. Id start by opening the Chrome console and watching for any log messages.

                  Developer at Radix IoT

                  B 1 Reply Last reply Reply Quote 0
                  • B
                    Bhanner @Jared Wiltshire
                    last edited by

                    @jared-wiltshire
                    Hi Jared,
                    It Flags up a missing file that when it first loads the scada page up but the only errors in the logs is timeouts that appear at the same time as the error messages
                    Regards
                    Billy

                    1 Reply Last reply Reply Quote 0
                    • Jared WiltshireJ
                      Jared Wiltshire
                      last edited by

                      Can you post or send me the content of the custom page you are displaying, I'll take a look and see if there is anything on there which might obviously cause the Chrome tab/process to lock up.

                      Developer at Radix IoT

                      B 2 Replies Last reply Reply Quote 0
                      • B
                        Bhanner @Jared Wiltshire
                        last edited by

                        @jared-wiltshire

                        <div class="ma-designer-root" id="a6832bdd-4cfa-4f2a-b0f0-1c4e44f79338" style="width: 1530px; height: 1050px; position: relative; line-height: 1; padding: 0px; margin: 0px; z-index: auto; overflow: visible; left: 600px;" ma-scale-to="window" ma-maintain-ratio="to-height" ma-center="true">

                        <!-- Header Section -->
                        <div id="a9f3817c-036e-4fa2-8ee6-936955b205ba" style="position: absolute; left: 0px; top: 0px; width: 1530px; height: 100px; text-align: center; background-color: rgb(0, 100, 0); color: rgb(255, 255, 255); font-family: sans-serif; font-size: 100px;">Welcome</div>
                        <!-- Time and Date Objects -->
                        <ma-now update-interval="1 SECONDS" output="time"></ma-now>
                        
                            
                        
                        <!-- Area Titles-->
                        <div id="df6fb5c2-9870-44a2-92f0-2b14dc36848d" style="position: absolute; left: 5px; top: 100px; width: 300px; height: 30px; text-align: left; z-index: 0; font-size: 25px;">Project Pen 1</div>
                        <div id="33106f17-b79e-4a7d-900a-ebb24ee79990" style="position: absolute; left: 310px; top: 100px; width: 300px; height: 30px; text-align: left; z-index: 0; font-size: 25px;">Project Pen 2</div>
                        <div id="9dfaf50f-d5c0-46ad-a37e-254c5e4232ec" style="position: absolute; left: 615px; top: 100px; width: 300px; height: 30px; text-align: left; font-size: 25px;">Project Pen 3</div>
                        <div id="131b689b-52e6-419f-866d-6e497bf41db0" style="position: absolute; left: 5px; top: 540px; width: 605px; height: 30px; text-align: left; font-size: 25px;">Outside Works Projects Deparment</div>
                        <div id="726bd79f-77e6-4fe1-ba0e-164dbe7729ed" style="position: absolute; left: 1225px; top: 100px; width: 300px; height: 30px; text-align: left; font-size: 25px;">South West Office</div>
                        <div id="994e3c44-eb49-46d4-9c04-dad89a148d07" style="position: absolute; left: 920px; top: 100px; width: 300px; height: 30px; text-align: left; z-index: 0; font-size: 25px;">Sales</div>
                        <div id="d2ffbccd-933f-4c4b-a939-dcbc26b48c48" style="position: absolute; left: 615px; top: 540px; width: 605px; height: 30px; text-align: left; z-index: 0; font-size: 25px;">Admin and Management</div>
                        <div id="cefb009a-516b-457d-8775-72fc8fa2a0ab" style="position: absolute; left: 1225px; top: 540px; width: 300px; height: 30px; text-align: left; z-index: 0; font-size: 25px;">Vistors</div>
                        
                        <img id="c930a37c-9e27-41f4-9482-2fcef067c6e0" style="position: absolute; left: 0px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 875px; z-index: 2; padding: 0px;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="4158f4c1-8850-446d-9fb2-45c3c9d688f1" style="position: absolute; left: 305px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 435px; z-index: 1;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="26e13219-7be9-4941-a379-09b38e234ff3" style="position: absolute; left: 610px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 875px; z-index: 1;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="1ff7a7c3-1ad5-4066-a496-0843c271ef42" style="position: absolute; left: 915px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 435px; z-index: 1;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="dd3b1c54-71f2-4aee-bee4-0d9118b41cf2" style="position: absolute; left: 1220px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 875px;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="97411267-59ac-4996-8d3c-48e7df211b84" style="position: absolute; left: 1525px; top: 100px; background-color: rgb(0, 0, 0); width: 5px; height: 875px; border-color: rgb(0, 0, 0); border-width: thin;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="3174d2ed-7b37-4be9-8edf-023f120ddd14" style="position: absolute; left: 0px; top: 130px; background-color: rgb(0, 0, 0); width: 1530px; height: 5px; z-index: 0;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="de726f2e-11c0-4242-a355-0126024a894a" style="position: absolute; left: 0px; top: 535px; background-color: rgb(0, 0, 0); width: 1530px; height: 5px; z-index: 0;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="7e0fb0b9-5e7f-41c5-9e55-c7fd21d881fc" style="position: absolute; left: 0px; top: 570px; background-color: rgb(0, 0, 0); width: 1530px; height: 5px; z-index: 0;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="3f686385-cb24-4ba2-be22-cc7479907c56" style="position: absolute; left: 305px; top: 575px; background-color: rgb(0, 0, 0); width: 5px; height: 400px; z-index: 1;" src="/rest/v2/file-stores/default/black.bmp">
                        <img id="70af13c0-66c6-4a8b-a319-cbf7c94de19d" style="position: absolute; left: 915px; top: 575px; background-color: rgb(0, 0, 0); width: 5px; height: 400px; z-index: 1;" src="/rest/v2/file-stores/default/black.bmp">
                        <div id="31dd8f49-4ffe-44c7-aa02-559404dce2e3" style="position: absolute; left: 0px; top: 975px; width: 1530px; height: 75px; background-color: rgb(0, 100, 0); z-index: 0;"></div>
                        
                        
                        <!-- Navigation/Command Buttons -->    
                        <ma-button id="8e4a01cd-efd3-4684-b8f5-dd8062ee35e0" style="position: absolute; left: 1426px; top: 1000px; z-index: 3;" raised="true" ui-sref="logout" label="Logout">Logout</ma-button>
                        <ma-button id="a4ecddc0-0326-4f7d-9066-bc7a698c3192" style="position: absolute; left: 1321.99px; top: 1002.01px; z-index: 4;" raised="true" ui-sref="scada.staffSigningConfig" label="Config"></ma-button>
                        <ma-button raised="true" label="Print" onclick="window.print()"></ma-button>    
                        <ma-point-value id="4b36515b-7a2f-4cf1-a5c2-dc2d9cf58cd7" enable-popup="hide" style="position: absolute; left: 5px; top: 135px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S1"></ma-point-value>
                        
                        
                        <ma-get-point-value point-xid="Visitor-Number-Selected" point="Vist_Num"></ma-get-point-value>
                        <ma-get-point-value point-xid="Visitor-Number-Selected-Script" point="Script"></ma-get-point-value>
                        <ma-button id="New-Vist" style="position: absolute; left: 1217.99px; top: 1002.03px; z-index: 4;" raised="true" label="New Visitor" ng-click="Vist_Num.setValue(Script.value); $state.go('scada.vistorSetupPage')"></ma-button>
                        
                        
                        <!-- Pen 1 Items-->
                        <ma-switch-img id="df27f044-c2c3-4d35-ad98-6f999ff77c24" style="position: absolute; left: 245px; top: 135px; height: 40px; width: 60px;" point-xid="P1-S1-S" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="6b0acd70-300c-429d-851b-4d57a7a3f9be" style="position: absolute; left: 245px; top: 175px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S2-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="ed35d81d-e054-489c-a028-47691df8d661" style="position: absolute; left: 245px; top: 215px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S3-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="4904cc14-923d-4598-8263-07327ce5ca46" style="position: absolute; left: 245px; top: 255px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S4-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="9b471242-2e24-4796-986b-89db0fd99ddb" style="position: absolute; left: 245px; top: 295px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S5-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="b5359cd1-1b4c-4809-94e4-abba8c49196c" style="position: absolute; left: 245px; top: 335px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S6-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="3cf7adfb-5efc-4cc4-aa91-e45c6bd6fd5b" style="position: absolute; left: 245px; top: 375px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S7-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="233280f7-963d-419e-b199-605be42835e1" style="position: absolute; left: 245px; top: 415px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S8-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="eef83167-2699-4474-a831-47cc422bea4e" style="position: absolute; left: 245px; top: 455px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S9-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="a0cc9722-02d3-46a8-a043-6a1ab7d563ab" style="position: absolute; left: 245px; top: 495px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="P1-S10-S" toggle-on-click="true"></ma-switch-img>
                        <ma-point-value id="923955ab-1339-4886-866b-b03a81d006a7" enable-popup="hide" style="position: absolute; left: 5px; top: 175px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S2"></ma-point-value>
                        <ma-point-value id="8d3e2cd9-b006-4b1a-8631-6f023c47295c" enable-popup="hide" style="position: absolute; left: 5px; top: 215px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S3"></ma-point-value>
                        <ma-point-value id="9ea096a6-3194-4dcd-a450-f465d9523dff" enable-popup="hide" style="position: absolute; left: 5px; top: 255px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S4"></ma-point-value>
                        <ma-point-value id="c3ba7b27-059e-4666-9d6a-490f3296f1bb" enable-popup="hide" style="position: absolute; left: 5px; top: 295px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S5"></ma-point-value>
                        <ma-point-value id="c7dc9ce1-93d2-4c98-89eb-b81416a7f865" enable-popup="hide" style="position: absolute; left: 5px; top: 335px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S6"></ma-point-value>
                        <ma-point-value id="892510e7-d12e-4e04-b527-e161778f8b60" enable-popup="hide" style="position: absolute; left: 5px; top: 375px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S7"></ma-point-value>
                        <ma-point-value id="40ef3ce5-5a90-44fb-93a9-1b811107e18c" enable-popup="hide" style="position: absolute; left: 5px; top: 415px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S8"></ma-point-value>
                        <ma-point-value id="df1759a8-93a3-451e-8c6a-a8b3976cbf82" enable-popup="hide" style="position: absolute; left: 5px; top: 455px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S9"></ma-point-value>
                        <ma-point-value id="d111ace4-05e5-4366-8438-86a351e4f194" enable-popup="hide" style="position: absolute; left: 5px; top: 495px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="P1-S10"></ma-point-value>
                        
                        
                        
                        
                        <!-- Visitor Items-->
                        <ma-point-value id="977b2a96-3209-4144-b857-488225412f5f" enable-popup="hide" style="position: absolute; left: 1225px; top: 575px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-1-Name"></ma-point-value>
                        <ma-switch-img id="63e0c5d3-9c32-4050-b1ac-5c18f6b6128c" style="position: absolute; left: 1465px; top: 575px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" toggle-on-click="true" point-xid="Vist-1-S"></ma-switch-img>
                        <ma-switch-img id="4acea326-590a-432f-bd38-a6f183d33907" style="position: absolute; left: 1465px; top: 615px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" toggle-on-click="true" point-xid="Vist-2-S"></ma-switch-img>
                        <ma-switch-img id="0ba4f2db-45bb-4356-95c6-01567c0b8c91" style="position: absolute; left: 1465px; top: 655px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" toggle-on-click="true" point-xid="Vist-3-S"></ma-switch-img>
                        <ma-switch-img id="e35677ab-b646-445f-b0e2-4cda9312844a" style="position: absolute; left: 1465px; top: 695px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-4-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="9f7d6335-f353-46b6-9bd8-8149e6703afe" style="position: absolute; left: 1465px; top: 735px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-5-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="83afc332-e867-421e-a5e2-3a85b07fb659" style="position: absolute; left: 1465px; top: 775px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-6-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="e102d94b-b29f-4d1f-90de-a7d1ba4309a9" style="position: absolute; left: 1465px; top: 815px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-7-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="04a2d2de-87b6-45a5-bb91-8438720e2a9f" style="position: absolute; left: 1465px; top: 855px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-8-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="5ff3d4c3-7670-49b2-9dc5-c7b8107206b4" style="position: absolute; left: 1465px; top: 895px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-9-S" toggle-on-click="true"></ma-switch-img>
                        <ma-switch-img id="dfed93a4-4054-4c01-9c33-77dc4a3ecdb8" style="position: absolute; left: 1465px; top: 935px; height: 40px; width: 60px;" src-false="/rest/v2/file-stores/default/Signed Out.bmp" src-true="/rest/v2/file-stores/default/Signed In.bmp" point-xid="Vist-10-S" toggle-on-click="true"></ma-switch-img>
                        
                        <ma-point-value id="b9cdd979-9e3d-4b9b-9ed6-1a0b96efc7e4" enable-popup="hide" style="position: absolute; left: 1225px; top: 615px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-2-Name"></ma-point-value>
                        <ma-point-value id="4c5c7729-b363-42af-9bdd-713e321ca6fe" enable-popup="hide" style="position: absolute; left: 1225px; top: 655px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-3-Name"></ma-point-value>
                        <ma-point-value id="683c8f86-3fda-4ed6-b353-d4128bf166ac" enable-popup="hide" style="position: absolute; left: 1225px; top: 695px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-4-Name"></ma-point-value>
                        <ma-point-value id="8ab0d3a7-c5e8-4e67-b217-25bc982e2fc3" enable-popup="hide" style="position: absolute; left: 1225px; top: 735px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-5-Name"></ma-point-value>
                        <ma-point-value id="24fd8af7-79e1-45ad-b4fe-584363affb70" enable-popup="hide" style="position: absolute; left: 1225px; top: 775px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-6-Name"></ma-point-value>
                        <ma-point-value id="2bc4ef1d-5588-4ba5-9f9c-6fdc1fbe3d8e" enable-popup="hide" style="position: absolute; left: 1225px; top: 815px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-7-Name"></ma-point-value>
                        <ma-point-value id="2c516cc2-8bbd-4a22-9ed1-75f70abc77da" enable-popup="hide" style="position: absolute; left: 1225px; top: 855px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-8-Name"></ma-point-value>
                        <ma-point-value id="d1a434a6-214e-4beb-88d3-d4234e3b2aab" enable-popup="hide" style="position: absolute; left: 1225px; top: 895px; width: 230px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-9-Name"></ma-point-value>
                        <ma-point-value id="d8d16661-0cd7-48a9-b82e-4674fd9c15bc" enable-popup="hide" style="position: absolute; left: 1225px; top: 935px; width: 229.992px; height: 30px; padding: 10px 5px 0px; margin: 0px; font-size: 25px;" flash-on-change="false" point-xid="Vist-10-Name"></ma-point-value>
                        <!-- Visitor Badge page nav-->
                        <ma-get-point-value point-xid="Visitor-Number-Selected" point="Vist_Num"></ma-get-point-value>
                        <ma-button id="Vist 1" style="position: absolute; left: 1225px; top: 575px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(1)"></ma-button>
                        <ma-button id="Vist 2" style="position: absolute; left: 1225px; top: 615px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(2)"></ma-button>
                        <ma-button id="Vist 3" style="position: absolute; left: 1225px; top: 655px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(3)"></ma-button>
                        <ma-button id="Vist 4" style="position: absolute; left: 1225px; top: 695px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(4)"></ma-button>
                        <ma-button id="Vist 5" style="position: absolute; left: 1225px; top: 735px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(5)"></ma-button>
                        <ma-button id="Vist 6" style="position: absolute; left: 1225px; top: 775px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(6)"></ma-button>
                        <ma-button id="Vist 7" style="position: absolute; left: 1225px; top: 815px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(7)"></ma-button>
                        <ma-button id="Vist 8" style="position: absolute; left: 1225px; top: 855px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(8)"></ma-button>
                        <ma-button id="Vist 9" style="position: absolute; left: 1225px; top: 895px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(9)"></ma-button>
                        <ma-button id="Vist 10" style="position: absolute; left: 1225px; top:935px; z-index: 4; height: 40px; width: 240px;" raised="false" ui-sref="scada.vistorSetupPage" ng-click="Vist_Num.setValue(10)"></ma-button>    
                        </div>
                        
                        1 Reply Last reply Reply Quote 0
                        • B
                          Bhanner @Jared Wiltshire
                          last edited by

                          @jared-wiltshire
                          Any ideas what's going on?

                          1 Reply Last reply Reply Quote 0
                          • Jared WiltshireJ
                            Jared Wiltshire
                            last edited by Jared Wiltshire

                            @Bhanner just looked it over and it doesn't look like there's anything wrong with it. Are you using the latest Chrome and the latest Mango and UI module? Does the tab freeze up every time at the same time? Is it reproducible under a certain set of conditions?

                            [edit] Its possible this is from a bug where the point value component was fetching events from the API too frequently, maybe try purging old events and upgrading your UI/API module.

                            Developer at Radix IoT

                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post