Subversion Repositories camp_sysinfo_client_3

Rev

Rev 256 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 256 Rev 257
Line 80... Line 80...
80
   #####
80
   #####
81
   
81
   
82
      my $temp = getSysctlParameter( 'sysctl', 'kern.boottime' );
82
      my $temp = getSysctlParameter( 'sysctl', 'kern.boottime' );
83
      $temp =~ m/sec = (\d+),/;
83
      $temp =~ m/sec = (\d+),/;
84
      $temp = $1;
84
      $temp = $1;
85
      push @out, "$CATEGORY\tlast_boot\t$temp\n";
85
      push @out, "$CATEGORY\tlast_boot\t$temp";
86
 
86
 
87
      $temp = time - $temp;
87
      $temp = time - $temp;
88
      push @out, "$CATEGORY\tuptime\t$temp\n";
88
      push @out, "$CATEGORY\tuptime\t$temp";
89
   
89
   
90
   #####
90
   #####
91
   ##### Your code ends here.
91
   ##### Your code ends here.
92
   #####
92
   #####
93
}
93
}