mirror of
https://github.com/go-gitea/gitea
synced 2025-01-22 07:34:26 +00:00
20 lines
475 B
Go
20 lines
475 B
Go
|
// 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"
|
||
|
)
|