Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
go.opentelemetry.io /
otel@v1.17.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
attribute
[ DIR ]
dr-xr-xr-x
baggage
[ DIR ]
dr-xr-xr-x
codes
[ DIR ]
dr-xr-xr-x
exporters
[ DIR ]
dr-xr-xr-x
internal
[ DIR ]
dr-xr-xr-x
propagation
[ DIR ]
dr-xr-xr-x
semconv
[ DIR ]
dr-xr-xr-x
.codespellignore
34
B
-r--r--r--
.codespellrc
252
B
-r--r--r--
.gitattributes
89
B
-r--r--r--
.gitignore
354
B
-r--r--r--
.gitmodules
147
B
-r--r--r--
.golangci.yml
11.07
KB
-r--r--r--
.lycheeignore
298
B
-r--r--r--
.markdownlint.yaml
309
B
-r--r--r--
CHANGELOG.md
180.76
KB
-r--r--r--
CODEOWNERS
533
B
-r--r--r--
CONTRIBUTING.md
19.7
KB
-r--r--r--
LICENSE
11.09
KB
-r--r--r--
Makefile
9.47
KB
-r--r--r--
README.md
5.52
KB
-r--r--r--
RELEASING.md
5.61
KB
-r--r--r--
VERSIONING.md
10.73
KB
-r--r--r--
doc.go
1.46
KB
-r--r--r--
error_handler.go
1.37
KB
-r--r--r--
get_main_pkgs.sh
1.22
KB
-r--r--r--
go.mod
519
B
-r--r--r--
go.sum
1.43
KB
-r--r--r--
handler.go
1.91
KB
-r--r--r--
handler_test.go
1.1
KB
-r--r--r--
internal_logging.go
867
B
-r--r--r--
internal_logging_test.go
825
B
-r--r--r--
metric.go
2.14
KB
-r--r--r--
metric_test.go
1.25
KB
-r--r--r--
propagation.go
1.13
KB
-r--r--r--
requirements.txt
17
B
-r--r--r--
trace.go
1.58
KB
-r--r--r--
trace_test.go
1.13
KB
-r--r--r--
verify_examples.sh
2.33
KB
-r--r--r--
version.go
759
B
-r--r--r--
version_test.go
1.19
KB
-r--r--r--
versions.yaml
2.42
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : handler_test.go
// Copyright The OpenTelemetry Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package otel import ( "testing" "github.com/stretchr/testify/assert" ) type testErrHandler struct { err error } var _ ErrorHandler = &testErrHandler{} func (eh *testErrHandler) Handle(err error) { eh.err = err } func TestGlobalErrorHandler(t *testing.T) { e1 := &testErrHandler{} SetErrorHandler(e1) Handle(assert.AnError) assert.ErrorIs(t, e1.err, assert.AnError) e1.err = nil e2 := &testErrHandler{} SetErrorHandler(e2) GetErrorHandler().Handle(assert.AnError) assert.ErrorIs(t, e2.err, assert.AnError) }
Close