mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
475 B
20 lines
475 B
1 week ago
|
// Copyright 2025 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package gtprof
|
||
|
|
||
|
// Some interesting names could be found in https://github.com/open-telemetry/opentelemetry-go/tree/main/semconv
|
||
|
|
||
|
const (
|
||
|
TraceSpanHTTP = "http"
|
||
|
TraceSpanGitRun = "git-run"
|
||
|
TraceSpanDatabase = "database"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
TraceAttrFuncCaller = "func.caller"
|
||
|
TraceAttrDbSQL = "db.sql"
|
||
|
TraceAttrGitCommand = "git.command"
|
||
|
TraceAttrHTTPRoute = "http.route"
|
||
|
)
|