Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
local /
go /
src /
cmd /
trace /
[ HOME SHELL ]
Name
Size
Permission
Action
annotations.go
33.98
KB
-rw-r--r--
annotations_test.go
9.72
KB
-rw-r--r--
doc.go
1.03
KB
-rw-r--r--
goroutines.go
8.45
KB
-rw-r--r--
main.go
6
KB
-rw-r--r--
mmu.go
12.67
KB
-rw-r--r--
pprof.go
11.16
KB
-rw-r--r--
trace.go
37.59
KB
-rw-r--r--
trace_test.go
8.13
KB
-rw-r--r--
trace_unix_test.go
2.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : doc.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Trace is a tool for viewing trace files. Trace files can be generated with: - runtime/trace.Start - net/http/pprof package - go test -trace Example usage: Generate a trace file with 'go test': go test -trace trace.out pkg View the trace in a web browser: go tool trace trace.out Generate a pprof-like profile from the trace: go tool trace -pprof=TYPE trace.out > TYPE.pprof Supported profile types are: - net: network blocking profile - sync: synchronization blocking profile - syscall: syscall blocking profile - sched: scheduler latency profile Then, you can use the pprof tool to analyze the profile: go tool pprof TYPE.pprof Note that while the various profiles available when launching 'go tool trace' work on every browser, the trace viewer itself (the 'view trace' page) comes from the Chrome/Chromium project and is only actively tested on that browser. */ package main
Close