• header.categories
    • header.recent
    • header.tags
    • header.popular
    • register
    • login

    miscellaneous question

    scheduled pinned locked moved General Discussion
    50 posts 3 posters 15.7k views 1 watching
    loading-more-posts
    • oldest-to-newest
    • newest-to-oldest
    • most-votes
    reply
    • reply-as-topic
    guest-login-reply
    deleted-message
    • jkandasaJ offline
      jkandasa @JeeLet
      global:last-edited-by,

      @JeeLet I will try to document MyController things,
      for now you can go with the followings, It shows list of nodes and gateways,
      If you want to display on the mixed resources, I can give an example, let me know

      Nodes

      id: 8cd43dbd-b873-4712-b855-789a6501e673
      title: Nodes Status
      showTitle: true
      scrollbarDisabled: false
      static: false
      type: widget_utilization_panel
      layout:
        w: 33
        h: 117
        x: 31
        'y': 0
      config:
        resource:
          displayName: true
          filter: {}
          filterType: detailed_filter
          isMixedResources: false
          limit: 10
          nameKey: name
          quickId: ''
          resources: []
          roundDecimal: 0
          timestampKey: lastSeen
          type: node
          unit: ''
          valueKey: state.status
        table:
          displayStatusPercentage: false
          hideBorder: false
          hideStatusColumn: true
          hideValueColumn: false
          maximumValue: 100
          minimumValue: 0
          thresholds: {}
        type: table
      

      Gateways

      id: bf2e078a-b4eb-4df2-b119-773ae47909ef
      title: Gateway Status
      showTitle: true
      scrollbarDisabled: false
      static: false
      type: widget_utilization_panel
      layout:
        w: 31
        h: 118
        x: 64
        'y': 0
      config:
        resource:
          displayName: true
          filter: {}
          filterType: detailed_filter
          isMixedResources: false
          limit: 10
          nameKey: id
          quickId: ''
          resources: []
          roundDecimal: 0
          timestampKey: state.since
          type: gateway
          unit: ''
          valueKey: state.status
        table:
          displayStatusPercentage: true
          hideBorder: false
          hideStatusColumn: true
          hideValueColumn: false
          maximumValue: 100
          minimumValue: 0
          thresholds: {}
        type: table
      

      b21db84f-57af-4971-a7c9-965b7b48eae8-image.png

      one-reply-to-this-post last-reply-time reply quote 0
      • J offline
        JeeLet
        global:last-edited-by, JeeLet

        Thank you @jkandasa

        it's very good like that , it works well

        I put at 10minute /Node State Updater/ Execution Interval

        "I'll try to document things MyController," ... yes the Labels / Key /Value part
        . what tree structure
        . family ? structure ???
        . how to use them ?? create them ??

        jkandasaJ one-reply-to-this-post last-reply-time reply quote 1
        • jkandasaJ offline
          jkandasa @JeeLet
          global:last-edited-by,

          @JeeLet said in miscellaneous question:

          . what tree structure
          . family ? structure ???
          . how to use them ?? create them ??

          You can refer the source code for all the keys. I will create document for this. but it will time 😉

          one-reply-to-this-post last-reply-time reply quote 0
          • J offline
            JeeLet
            global:last-edited-by, JeeLet

            Hello jkandasa

            It's been a long time, I hope you are well.

            a question about the visualization of the curves of measurements.

            On my Dashboard I have to add a widget to visualize the values with the
            "Field Details" which is more flexible to use.

            here is an image for the explanation text alternatif

            In the example, there is no way to do it by clicking on the element
            V_LIGHT_LEVEL element of the "LuX panel"?

            Thanks

            jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
            • J offline
              JeeLet
              global:last-edited-by, JeeLet

              unnecessary message is cumbersome

              ... Delete ..... 🙂

              one-reply-to-this-post last-reply-time reply quote 0
              • skywatchS offline
                skywatch
                global:last-edited-by,

                your issue could be in a number of places but if it helps for the BH1750 sensor I use V_LEVEL and S_LIGHT_LEVEL

                MC does not need to know what the units are as you can change this to whatever you want.

                one-reply-to-this-post last-reply-time reply quote 1
                • J offline
                  JeeLet
                  global:last-edited-by,

                  Hello

                  I just realized that I've done something wrong 😞

                  S_LIGHT_LEVEL    ---  to --->     S_LEVEL
                  

                  thank you skywatch for cleaning my glasses

                  one-reply-to-this-post last-reply-time reply quote 0
                  • J offline
                    JeeLet
                    global:last-edited-by,

                    there are days that are not easy

                    the Lux Unit does not want to be considered
                    the part of the Yaml file

                    fieldId: V_LEVEL
                    name: V_LEVEL
                    metricType: gauge_float
                    ....
                    unit: ''    <------ ????
                    labels:
                      ms_node_id: '58'
                      ms_sensor_id: '5'
                      ms_type: '37'
                      ms_type_string: V_LEVEL
                    

                    I give it the "Lux" value but it doesn't keep it 😞

                    jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                    • jkandasaJ offline
                      jkandasa @JeeLet
                      global:last-edited-by, jkandasa

                      @JeeLet I give it the "Lux" value but it doesn't keep it 😞

                      You can ignore the default unit by adding a label ignore_unit:true, this is applicable for name and metric type.
                      if you change any of the following from the default to custom value use ignore_* label.

                      Example:

                      • I changed the name, unit, and metricType
                      labels:
                        ignore_name: "true"
                        ignore_unit: "true"
                        ignore_metric_type: "true"
                      

                      to know more about defined labels: https://github.com/mycontroller-org/server/blob/6ce7df3a32325af16fb87b638cd45c58110cbe1d/pkg/types/labels.go

                      one-reply-to-this-post last-reply-time reply quote 0
                      • jkandasaJ offline
                        jkandasa @JeeLet
                        global:last-edited-by,

                        @JeeLet said in miscellaneous question:

                        In the example, there is no way to do it by clicking on the element

                        I could not find a way to click from legend. I have created a GH issue to track this. In the future we may resolve this. https://github.com/mycontroller-org/console-web/issues/11

                        one-reply-to-this-post last-reply-time reply quote 0
                        • J offline
                          JeeLet
                          global:last-edited-by,

                          Thank you
                          The Lux are well La 🙂
                          (ignore_unit:true is good)

                          For my 2nd question "click from the legend"

                          here I talked about the problem that when you are in "Edit" mode of a widget
                          https://forum.mycontroller.org/topic/510/vokoscreen

                          can we put this function back when we are in "Visualization" mode?

                          clicking on the curve is as good, even better

                          jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                          • jkandasaJ offline
                            jkandasa @JeeLet
                            global:last-edited-by,

                            @JeeLet said in miscellaneous question:

                            can we put this function back when we are in "Visualization" mode?

                            It is back already. the group chart and mixed chart is not designed the way other charts behave. So drill down is not implemented in those charts. I will find a way for this.

                            one-reply-to-this-post last-reply-time reply quote 0
                            • J offline
                              JeeLet
                              global:last-edited-by, JeeLet

                              🍀

                              one-reply-to-this-post last-reply-time reply quote 1
                              • J offline
                                JeeLet
                                global:last-edited-by, JeeLet

                                Hello
                                you say that ". It is already back. the group graph and the mixed graph".
                                ok, but no it has no change !
                                (I tell you this for information, it's not important)

                                but I just redid an install with the last version

                                e 24 juillet 2022
                                Server
                                Host ID   : 91ffxxxxxxx
                                Version  : master
                                .....
                                Build Date  : 2022-07-06T11:05:29+00:00
                                GoLang Version  :  go1.18.3 (linux, arm64)
                                
                                Web Console
                                Version  :  master
                                .....
                                Build Date  :  2022-06-07T15:13:36+00:00
                                React Version  ; 17.0.2
                                
                                jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                                • jkandasaJ offline
                                  jkandasa @JeeLet
                                  global:last-edited-by,

                                  @JeeLet said in miscellaneous question:

                                  you say that ". It is already back. the group graph and the mixed graph".

                                  This is feature is not available for group graph and mixed graph from the beginning.
                                  Do you see any issues on the other widgets?

                                  one-reply-to-this-post last-reply-time reply quote 0
                                  • J offline
                                    JeeLet
                                    global:last-edited-by, JeeLet

                                    re-Edit

                                    Merci, I finally understood about the curves, excuse me .

                                    .... next, "Do you see problems on the other widgets ?"
                                    No everything is good, the widgets are easy to duplicate, the system is stable and responsive; really good ... great MyC.

                                    a new question 🙂
                                    is it possible to navigate between the dashboards without going through the top dropdown menu?
                                    widgets that call other pages, other dashbords!

                                    a good week to you

                                    jkandasaJ one-reply-to-this-post last-reply-time reply quote 2
                                    • jkandasaJ offline
                                      jkandasa @JeeLet
                                      global:last-edited-by,

                                      @JeeLet said in miscellaneous question:

                                      is it possible to navigate between the dashboards without going through the top dropdown menu?
                                      widgets that call other pages, other dashbords!

                                      This is a cool idea. I will think about this.

                                      a good week to you

                                      you too 🙂

                                      one-reply-to-this-post last-reply-time reply quote 1
                                      • J offline
                                        JeeLet
                                        global:last-edited-by, JeeLet

                                        a reverse or a link to return
                                        video

                                        For https://github.com/mycontroller-org/console-web/issues/11
                                        .... for the continuation

                                        cool cool cool

                                        jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                                        • jkandasaJ offline
                                          jkandasa @JeeLet
                                          global:last-edited-by,

                                          @JeeLet said in miscellaneous question:

                                          a reverse or a link to return

                                          I think it is not a good idea to add dashboard link on field and other entities location. Browser back button works on this scenario.

                                          one-reply-to-this-post last-reply-time reply quote 0
                                          • J offline
                                            JeeLet
                                            global:last-edited-by, JeeLet

                                            the idea was to stay in the MyController application.

                                            But yes, using the browser backspace is a solution.

                                            ... yes it is very easy for me to say, do this do that when I am in my Hammock

                                            jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                                            • first-post
                                              last-post

                                            0

                                            online

                                            644

                                            users

                                            532

                                            topics

                                            3.4k

                                            posts
                                            Copyright © 2015-2025 MyController.org | Contributors | Localization