1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
/*
* DO NOT EDIT, this is an Auto-generated file from:
* buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
*/
#pragma once
#include "opentelemetry/common/macros.h"
#include "opentelemetry/version.h"
OPENTELEMETRY_BEGIN_NAMESPACE
namespace semconv
{
namespace cpu
{
/**
The logical CPU number [0..n-1]
*/
static constexpr const char *kCpuLogicalNumber = "cpu.logical_number";
/**
The mode of the CPU
*/
static constexpr const char *kCpuMode = "cpu.mode";
namespace CpuModeValues
{
/**
User
*/
static constexpr const char *kUser = "user";
/**
System
*/
static constexpr const char *kSystem = "system";
/**
Nice
*/
static constexpr const char *kNice = "nice";
/**
Idle
*/
static constexpr const char *kIdle = "idle";
/**
IO Wait
*/
static constexpr const char *kIowait = "iowait";
/**
Interrupt
*/
static constexpr const char *kInterrupt = "interrupt";
/**
Steal
*/
static constexpr const char *kSteal = "steal";
/**
Kernel
*/
static constexpr const char *kKernel = "kernel";
} // namespace CpuModeValues
} // namespace cpu
} // namespace semconv
OPENTELEMETRY_END_NAMESPACE
|