Vasiliy Tolstov
b6a0e4d983
All checks were successful
test / test (push) Successful in 46s
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
13 lines
504 B
Go
13 lines
504 B
Go
package semconv
|
|
|
|
var (
|
|
// StoreRequestDurationSeconds specifies meter metric name
|
|
StoreRequestDurationSeconds = "micro_store_request_duration_seconds"
|
|
// StoreRequestLatencyMicroseconds specifies meter metric name
|
|
StoreRequestLatencyMicroseconds = "micro_store_request_latency_microseconds"
|
|
// StoreRequestTotal specifies meter metric name
|
|
StoreRequestTotal = "micro_store_request_total"
|
|
// StoreRequestInflight specifies meter metric name
|
|
StoreRequestInflight = "micro_store_request_inflight"
|
|
)
|