@@ -56,6 +56,7 @@ export enum FieldKey {
56
56
GEO_CITY = 'geo.city' ,
57
57
GEO_COUNTRY_CODE = 'geo.country_code' ,
58
58
GEO_REGION = 'geo.region' ,
59
+ GEO_SUBDIVISION = 'geo.subdivision' ,
59
60
HAS = 'has' ,
60
61
HTTP_METHOD = 'http.method' ,
61
62
HTTP_REFERER = 'http.referer' ,
@@ -656,6 +657,11 @@ const EVENT_FIELD_DEFINITIONS: Record<AllEventFieldKeys, FieldDefinition> = {
656
657
kind : FieldKind . FIELD ,
657
658
valueType : FieldValueType . STRING ,
658
659
} ,
660
+ [ FieldKey . GEO_SUBDIVISION ] : {
661
+ desc : t ( 'Full name of the subdivision' ) ,
662
+ kind : FieldKind . FIELD ,
663
+ valueType : FieldValueType . STRING ,
664
+ } ,
659
665
[ FieldKey . HTTP_METHOD ] : {
660
666
desc : t ( 'Method of the request that created the event' ) ,
661
667
kind : FieldKind . FIELD ,
@@ -998,6 +1004,7 @@ export const ISSUE_FIELDS = [
998
1004
FieldKey . GEO_CITY ,
999
1005
FieldKey . GEO_COUNTRY_CODE ,
1000
1006
FieldKey . GEO_REGION ,
1007
+ FieldKey . GEO_SUBDIVISION ,
1001
1008
FieldKey . HAS ,
1002
1009
FieldKey . HTTP_METHOD ,
1003
1010
FieldKey . HTTP_REFERER ,
@@ -1098,6 +1105,7 @@ export const DISCOVER_FIELDS = [
1098
1105
FieldKey . GEO_COUNTRY_CODE ,
1099
1106
FieldKey . GEO_REGION ,
1100
1107
FieldKey . GEO_CITY ,
1108
+ FieldKey . GEO_SUBDIVISION ,
1101
1109
FieldKey . ERROR_TYPE ,
1102
1110
FieldKey . ERROR_VALUE ,
1103
1111
FieldKey . ERROR_MECHANISM ,
0 commit comments