Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
rrdtool /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
4charts.pl
2.56
KB
-rwxr-xr-x
bigtops.pl
1.16
KB
-rwxr-xr-x
cgi-demo.cgi
858
B
-rwxr-xr-x
ifOctets.tcl
1.21
KB
-rwxr-xr-x
minmax.pl
1.12
KB
-rwxr-xr-x
perftest.pl
5.75
KB
-rwxr-xr-x
piped-demo.pl
4.28
KB
-rwxr-xr-x
shared-demo.pl
5.52
KB
-rwxr-xr-x
stripes.pl
1.24
KB
-rwxr-xr-x
test.rb
1.9
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test.rb
#!/usr/bin/env ruby # $Id: test.rb,v 1.2 2002/10/22 17:34:00 miles Exp $ # Driver does not carry cash. $: << '/scratch/rrd12build/lib/ruby/1.8/i386-linux/' require "RRD" name = "test" rrd = "#{name}.rrd" start_time = Time.now.to_i end_time = start_time.to_i + 300 * 300 puts "creating #{rrd}" RRD.create( rrd, "--start", "#{start_time - 1}", "--step", "300", "DS:a:GAUGE:600:U:U", "DS:b:GAUGE:600:U:U", "RRA:AVERAGE:0.5:1:300") puts puts "updating #{rrd}" start_time.step(end_time, 300) { |i| RRD.update(rrd, "#{i}:#{rand(100)}:#{Math.sin(i / 800) * 50 + 50}") } puts puts "fetching data from #{rrd}" (fstart, fend, data) = RRD.fetch(rrd, "--start", start_time.to_s, "--end", end_time.to_s, "AVERAGE") puts "got #{data.length} data points from #{fstart} to #{fend}" puts puts "generating graph #{name}.png" RRD.graph( "#{name}.png", "--title", " RubyRRD Demo", "--start", "#{start_time+3600}", "--end", "start + 1000 min", "--interlaced", "--imgformat", "PNG", "--width=450", "DEF:a=#{rrd}:a:AVERAGE", "DEF:b=#{rrd}:b:AVERAGE", "CDEF:line=TIME,2400,%,300,LT,a,UNKN,IF", "AREA:b#00b6e4:beta", "AREA:line#0022e9:alpha", "LINE3:line#ff0000") puts # last method test if end_time != RRD.last("#{rrd}").to_i puts "last method expects #{Time.at(end_time)}." puts " But #{RRD.last("#{rrd}")} returns." end puts # xport method test puts "xporting data from #{rrd}" (fstart,fend,step,col,legend,data)=RRD.xport( "--start", start_time.to_s, "--end", (start_time + 300 * 300).to_s, "--step", 10.to_s, "DEF:A=#{rrd}:a:AVERAGE", "DEF:B=#{rrd}:b:AVERAGE", "XPORT:A:a", "XPORT:B:b") puts "Xported #{col} columns(#{legend.join(", ")}) with #{data.length} rows from #{fstart} to #{fend} and step #{step}\n" print "This script has created #{name}.png in the current directory\n"; print "This demonstrates the use of the TIME and % RPN operators\n";
Close