Announcement

Collapse
No announcement yet.

KSysguard broken

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    KSysguard broken

    My Ksysguard system load tab is not displaying CPU load and network traffic graphs anymore:

    Click image for larger version

Name:	ksysguard.png
Views:	1
Size:	40.2 KB
ID:	648917

    Any idea why?
    Kubuntu 18.04
    Laptop: Tuxedo InifinityBook Pro v5

    #2
    You should have definition files in ~/.kde/share/apps/ksysguard/ - such as SystemLoad2.sgrd

    Could you post the contents of this one?
    I'd rather be locked out than locked in.

    Comment


      #3
      Here it is:
      SystemLoad2.sgrd


      Code:
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE KSysGuardWorkSheet>
      <WorkSheet title="System Load" interval="0.5" locked="1" rows="3" columns="1">
       <host port="-1" command="ksysguardd" shell="" name="localhost"/>
       <display title="CPU History" columnSpan="1" hScale="6" svgBackground="widgets/plot-background" version="1" vLines="0" labels="1" manualRange="0" autoRange="0" rowSpan="1" stacked="1" vDistance="30" fontSize="8" vScroll="0" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="0"/>
       <display title="Memory and Swap History" columnSpan="1" hScale="6" svgBackground="widgets/plot-background" version="1" vLines="0" labels="1" manualRange="0" autoRange="0" rowSpan="1" stacked="0" vDistance="30" fontSize="8" vScroll="0" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="1">
        <beam sensorName="mem/physical/application" sensorType="integer" hostName="localhost" summationName="Memory" color="0xffc000c0"/>
        <beam sensorName="mem/swap/used" sensorType="integer" hostName="localhost" summationName="Swap" color="0xff00c000"/>
       </display>
       <display title="Network History" columnSpan="1" hScale="6" svgBackground="widgets/plot-background" version="1" max="20" vLines="0" labels="1" manualRange="1" autoRange="1" rowSpan="1" min="0" stacked="0" vDistance="30" vScroll="0" fontSize="8" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="2"/>
      </WorkSheet>
      Kubuntu 18.04
      Laptop: Tuxedo InifinityBook Pro v5

      Comment


        #4
        Mine looks like this
        Code:
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE KSysGuardWorkSheet>
        <WorkSheet title="System Load" interval="0.5" locked="1" rows="3" columns="1">
         <host port="-1" command="ksysguardd" shell="" name="localhost"/>
         <display title="CPU History" columnSpan="1" hScale="1" svgBackground="widgets/plot-background" version="1" vLines="0" labels="1" manualRange="0" autoRange="0" rowSpan="1" stacked="0" vDistance="30" fontSize="8" vScroll="0" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="0">
          <beam sensorType="float" hostName="localhost" regexpSensorName="cpu/cpu.*/TotalLoad" color="0xffff8000,0xffe20800"/>
         </display>
         <display title="Memory and Swap History" columnSpan="1" hScale="1" svgBackground="widgets/plot-background" version="1" vLines="0" labels="1" manualRange="0" autoRange="0" rowSpan="1" stacked="0" vDistance="30" fontSize="8" vScroll="0" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="1">
          <beam sensorName="mem/physical/application" sensorType="integer" hostName="localhost" summationName="Memory" color="0xffc000c0"/>
          <beam sensorName="mem/swap/used" sensorType="integer" hostName="localhost" summationName="Swap" color="0xff00c000"/>
         </display>
         <display title="Network History" columnSpan="1" hScale="1" svgBackground="widgets/plot-background" version="1" max="20" vLines="0" labels="1" manualRange="1" autoRange="1" rowSpan="1" min="0" stacked="0" vDistance="30" vScroll="0" fontSize="8" column="0" unit="" hLines="1" showUnit="0" class="FancyPlotter" row="2">
          <beam sensorType="float" hostName="localhost" regexpSensorName="network/interfaces/(?!lo|bridge|usbus|bond).*/receiver/data" summationName="Receiving" color="0xffb3a52d"/>
          <beam sensorType="float" hostName="localhost" regexpSensorName="network/interfaces/(?!lo|bridge|usbus|bond).*/transmitter/data" summationName="Sending" color="0xff844798"/>
         </display>
        </WorkSheet>
        - yours seems to have lost the <beam> elements that define the actual plot lines.

        I think if you just save this version you'll be fine.
        I'd rather be locked out than locked in.

        Comment


          #5
          Originally posted by SecretCode View Post
          - yours seems to have lost the <beam> elements that define the actual plot lines.

          I think if you just save this version you'll be fine.
          I tried that - works again! thanks!
          But how on earth did that happen? I certainly never touched that file - knowingly.
          Kubuntu 18.04
          Laptop: Tuxedo InifinityBook Pro v5

          Comment

          Working...
          X