@@ -1256,6 +1256,106 @@ export const CODE_NAMESPACE = 'code.namespace';
12561256 */
12571257export type CODE_NAMESPACE_TYPE = string ;
12581258
1259+ // Path: model/attributes/culture/culture__calendar.json
1260+
1261+ /**
1262+ * The calendar system used by the culture. `culture.calendar`
1263+ *
1264+ * Attribute Value Type: `string` {@link CULTURE_CALENDAR_TYPE}
1265+ *
1266+ * Contains PII: maybe
1267+ *
1268+ * Attribute defined in OTEL: No
1269+ *
1270+ * @example "GregorianCalendar"
1271+ */
1272+ export const CULTURE_CALENDAR = 'culture.calendar' ;
1273+
1274+ /**
1275+ * Type for {@link CULTURE_CALENDAR} culture.calendar
1276+ */
1277+ export type CULTURE_CALENDAR_TYPE = string ;
1278+
1279+ // Path: model/attributes/culture/culture__display_name.json
1280+
1281+ /**
1282+ * Human readable name of the culture. `culture.display_name`
1283+ *
1284+ * Attribute Value Type: `string` {@link CULTURE_DISPLAY_NAME_TYPE}
1285+ *
1286+ * Contains PII: maybe
1287+ *
1288+ * Attribute defined in OTEL: No
1289+ *
1290+ * @example "English (United States)"
1291+ */
1292+ export const CULTURE_DISPLAY_NAME = 'culture.display_name' ;
1293+
1294+ /**
1295+ * Type for {@link CULTURE_DISPLAY_NAME} culture.display_name
1296+ */
1297+ export type CULTURE_DISPLAY_NAME_TYPE = string ;
1298+
1299+ // Path: model/attributes/culture/culture__is_24_hour_format.json
1300+
1301+ /**
1302+ * Whether the culture uses 24-hour time format. `culture.is_24_hour_format`
1303+ *
1304+ * Attribute Value Type: `boolean` {@link CULTURE_IS_24_HOUR_FORMAT_TYPE}
1305+ *
1306+ * Contains PII: maybe
1307+ *
1308+ * Attribute defined in OTEL: No
1309+ *
1310+ * @example true
1311+ */
1312+ export const CULTURE_IS_24_HOUR_FORMAT = 'culture.is_24_hour_format' ;
1313+
1314+ /**
1315+ * Type for {@link CULTURE_IS_24_HOUR_FORMAT} culture.is_24_hour_format
1316+ */
1317+ export type CULTURE_IS_24_HOUR_FORMAT_TYPE = boolean ;
1318+
1319+ // Path: model/attributes/culture/culture__locale.json
1320+
1321+ /**
1322+ * The locale identifier following RFC 4646. `culture.locale`
1323+ *
1324+ * Attribute Value Type: `string` {@link CULTURE_LOCALE_TYPE}
1325+ *
1326+ * Contains PII: maybe
1327+ *
1328+ * Attribute defined in OTEL: No
1329+ *
1330+ * @example "en-US"
1331+ */
1332+ export const CULTURE_LOCALE = 'culture.locale' ;
1333+
1334+ /**
1335+ * Type for {@link CULTURE_LOCALE} culture.locale
1336+ */
1337+ export type CULTURE_LOCALE_TYPE = string ;
1338+
1339+ // Path: model/attributes/culture/culture__timezone.json
1340+
1341+ /**
1342+ * The timezone of the culture, as a geographic timezone identifier. `culture.timezone`
1343+ *
1344+ * Attribute Value Type: `string` {@link CULTURE_TIMEZONE_TYPE}
1345+ *
1346+ * Contains PII: maybe
1347+ *
1348+ * Attribute defined in OTEL: No
1349+ *
1350+ * @example "Europe/Vienna"
1351+ */
1352+ export const CULTURE_TIMEZONE = 'culture.timezone' ;
1353+
1354+ /**
1355+ * Type for {@link CULTURE_TIMEZONE} culture.timezone
1356+ */
1357+ export type CULTURE_TIMEZONE_TYPE = string ;
1358+
12591359// Path: model/attributes/db/db__collection__name.json
12601360
12611361/**
@@ -8927,6 +9027,11 @@ export const ATTRIBUTE_TYPE: Record<string, AttributeType> = {
89279027 [ CODE_LINENO ] : 'integer' ,
89289028 [ CODE_LINE_NUMBER ] : 'integer' ,
89299029 [ CODE_NAMESPACE ] : 'string' ,
9030+ [ CULTURE_CALENDAR ] : 'string' ,
9031+ [ CULTURE_DISPLAY_NAME ] : 'string' ,
9032+ [ CULTURE_IS_24_HOUR_FORMAT ] : 'boolean' ,
9033+ [ CULTURE_LOCALE ] : 'string' ,
9034+ [ CULTURE_TIMEZONE ] : 'string' ,
89309035 [ DB_COLLECTION_NAME ] : 'string' ,
89319036 [ DB_NAME ] : 'string' ,
89329037 [ DB_NAMESPACE ] : 'string' ,
@@ -9355,6 +9460,11 @@ export type AttributeName =
93559460 | typeof CODE_LINENO
93569461 | typeof CODE_LINE_NUMBER
93579462 | typeof CODE_NAMESPACE
9463+ | typeof CULTURE_CALENDAR
9464+ | typeof CULTURE_DISPLAY_NAME
9465+ | typeof CULTURE_IS_24_HOUR_FORMAT
9466+ | typeof CULTURE_LOCALE
9467+ | typeof CULTURE_TIMEZONE
93589468 | typeof DB_COLLECTION_NAME
93599469 | typeof DB_NAME
93609470 | typeof DB_NAMESPACE
@@ -10384,6 +10494,51 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1038410494 reason : 'code.function.name should include the namespace.' ,
1038510495 } ,
1038610496 } ,
10497+ [ CULTURE_CALENDAR ] : {
10498+ brief : 'The calendar system used by the culture.' ,
10499+ type : 'string' ,
10500+ pii : {
10501+ isPii : 'maybe' ,
10502+ } ,
10503+ isInOtel : false ,
10504+ example : 'GregorianCalendar' ,
10505+ } ,
10506+ [ CULTURE_DISPLAY_NAME ] : {
10507+ brief : 'Human readable name of the culture.' ,
10508+ type : 'string' ,
10509+ pii : {
10510+ isPii : 'maybe' ,
10511+ } ,
10512+ isInOtel : false ,
10513+ example : 'English (United States)' ,
10514+ } ,
10515+ [ CULTURE_IS_24_HOUR_FORMAT ] : {
10516+ brief : 'Whether the culture uses 24-hour time format.' ,
10517+ type : 'boolean' ,
10518+ pii : {
10519+ isPii : 'maybe' ,
10520+ } ,
10521+ isInOtel : false ,
10522+ example : true ,
10523+ } ,
10524+ [ CULTURE_LOCALE ] : {
10525+ brief : 'The locale identifier following RFC 4646.' ,
10526+ type : 'string' ,
10527+ pii : {
10528+ isPii : 'maybe' ,
10529+ } ,
10530+ isInOtel : false ,
10531+ example : 'en-US' ,
10532+ } ,
10533+ [ CULTURE_TIMEZONE ] : {
10534+ brief : 'The timezone of the culture, as a geographic timezone identifier.' ,
10535+ type : 'string' ,
10536+ pii : {
10537+ isPii : 'maybe' ,
10538+ } ,
10539+ isInOtel : false ,
10540+ example : 'Europe/Vienna' ,
10541+ } ,
1038710542 [ DB_COLLECTION_NAME ] : {
1038810543 brief : 'The name of a collection (table, container) within the database.' ,
1038910544 type : 'string' ,
@@ -14138,6 +14293,11 @@ export type Attributes = {
1413814293 [ CODE_LINENO ] ?: CODE_LINENO_TYPE ;
1413914294 [ CODE_LINE_NUMBER ] ?: CODE_LINE_NUMBER_TYPE ;
1414014295 [ CODE_NAMESPACE ] ?: CODE_NAMESPACE_TYPE ;
14296+ [ CULTURE_CALENDAR ] ?: CULTURE_CALENDAR_TYPE ;
14297+ [ CULTURE_DISPLAY_NAME ] ?: CULTURE_DISPLAY_NAME_TYPE ;
14298+ [ CULTURE_IS_24_HOUR_FORMAT ] ?: CULTURE_IS_24_HOUR_FORMAT_TYPE ;
14299+ [ CULTURE_LOCALE ] ?: CULTURE_LOCALE_TYPE ;
14300+ [ CULTURE_TIMEZONE ] ?: CULTURE_TIMEZONE_TYPE ;
1414114301 [ DB_COLLECTION_NAME ] ?: DB_COLLECTION_NAME_TYPE ;
1414214302 [ DB_NAME ] ?: DB_NAME_TYPE ;
1414314303 [ DB_NAMESPACE ] ?: DB_NAMESPACE_TYPE ;
0 commit comments