-
Notifications
You must be signed in to change notification settings - Fork 419
/
ecs_flat.yml
19445 lines (18937 loc) · 621 KB
/
ecs_flat.yml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'@timestamp':
dashed_name: timestamp
description: 'Date/time when the event originated.
This is the date/time extracted from the event, typically representing when the
event was generated by the source.
If the event source has no original timestamp, this value is typically populated
by the first time the event was received by the pipeline.
Required field for all events.'
example: '2016-05-23T08:05:34.853Z'
flat_name: '@timestamp'
level: core
name: '@timestamp'
normalize: []
required: true
short: Date/time when the event originated.
type: date
agent.build.original:
dashed_name: agent-build-original
description: 'Extended build information for the agent.
This field is intended to contain any build information that a data source may
provide, no specific formatting is required.'
example: metricbeat version 7.6.0 (amd64), libbeat 7.6.0 [6a23e8f8f30f5001ba344e4e54d8d9cb82cb107c
built 2020-02-05 23:10:10 +0000 UTC]
flat_name: agent.build.original
ignore_above: 1024
level: core
name: build.original
normalize: []
short: Extended build information for the agent.
type: keyword
agent.ephemeral_id:
dashed_name: agent-ephemeral-id
description: 'Ephemeral identifier of this agent (if one exists).
This id normally changes across restarts, but `agent.id` does not.'
example: 8a4f500f
flat_name: agent.ephemeral_id
ignore_above: 1024
level: extended
name: ephemeral_id
normalize: []
short: Ephemeral identifier of this agent.
type: keyword
agent.id:
dashed_name: agent-id
description: 'Unique identifier of this agent (if one exists).
Example: For Beats this would be beat.id.'
example: 8a4f500d
flat_name: agent.id
ignore_above: 1024
level: core
name: id
normalize: []
short: Unique identifier of this agent.
type: keyword
agent.name:
dashed_name: agent-name
description: 'Custom name of the agent.
This is a name that can be given to an agent. This can be helpful if for example
two Filebeat instances are running on the same host but a human readable separation
is needed on which Filebeat instance data is coming from.'
example: foo
flat_name: agent.name
ignore_above: 1024
level: core
name: name
normalize: []
short: Custom name of the agent.
type: keyword
agent.type:
dashed_name: agent-type
description: 'Type of the agent.
The agent type always stays the same and should be given by the agent used. In
case of Filebeat the agent would always be Filebeat also if two Filebeat instances
are run on the same machine.'
example: filebeat
flat_name: agent.type
ignore_above: 1024
level: core
name: type
normalize: []
short: Type of the agent.
type: keyword
agent.version:
dashed_name: agent-version
description: Version of the agent.
example: 6.0.0-rc2
flat_name: agent.version
ignore_above: 1024
level: core
name: version
normalize: []
short: Version of the agent.
type: keyword
client.address:
dashed_name: client-address
description: 'Some event client addresses are defined ambiguously. The event will
sometimes list an IP, a domain or a unix socket. You should always store the
raw address in the `.address` field.
Then it should be duplicated to `.ip` or `.domain`, depending on which one it
is.'
flat_name: client.address
ignore_above: 1024
level: extended
name: address
normalize: []
short: Client network address.
type: keyword
client.as.number:
dashed_name: client-as-number
description: Unique number allocated to the autonomous system. The autonomous system
number (ASN) uniquely identifies each network on the Internet.
example: 15169
flat_name: client.as.number
level: extended
name: number
normalize: []
original_fieldset: as
short: Unique number allocated to the autonomous system.
type: long
client.as.organization.name:
dashed_name: client-as-organization-name
description: Organization name.
example: Google LLC
flat_name: client.as.organization.name
ignore_above: 1024
level: extended
multi_fields:
- flat_name: client.as.organization.name.text
name: text
type: match_only_text
name: organization.name
normalize: []
original_fieldset: as
short: Organization name.
type: keyword
client.bytes:
dashed_name: client-bytes
description: Bytes sent from the client to the server.
example: 184
flat_name: client.bytes
format: bytes
level: core
name: bytes
normalize: []
short: Bytes sent from the client to the server.
type: long
client.domain:
dashed_name: client-domain
description: 'The domain name of the client system.
This value may be a host name, a fully qualified domain name, or another host
naming format. The value may derive from the original event or be added from enrichment.'
example: foo.example.com
flat_name: client.domain
ignore_above: 1024
level: core
name: domain
normalize: []
short: The domain name of the client.
type: keyword
client.geo.city_name:
dashed_name: client-geo-city-name
description: City name.
example: Montreal
flat_name: client.geo.city_name
ignore_above: 1024
level: core
name: city_name
normalize: []
original_fieldset: geo
short: City name.
type: keyword
client.geo.continent_code:
dashed_name: client-geo-continent-code
description: Two-letter code representing continent's name.
example: NA
flat_name: client.geo.continent_code
ignore_above: 1024
level: core
name: continent_code
normalize: []
original_fieldset: geo
short: Continent code.
type: keyword
client.geo.continent_name:
dashed_name: client-geo-continent-name
description: Name of the continent.
example: North America
flat_name: client.geo.continent_name
ignore_above: 1024
level: core
name: continent_name
normalize: []
original_fieldset: geo
short: Name of the continent.
type: keyword
client.geo.country_iso_code:
dashed_name: client-geo-country-iso-code
description: Country ISO code.
example: CA
flat_name: client.geo.country_iso_code
ignore_above: 1024
level: core
name: country_iso_code
normalize: []
original_fieldset: geo
short: Country ISO code.
type: keyword
client.geo.country_name:
dashed_name: client-geo-country-name
description: Country name.
example: Canada
flat_name: client.geo.country_name
ignore_above: 1024
level: core
name: country_name
normalize: []
original_fieldset: geo
short: Country name.
type: keyword
client.geo.location:
dashed_name: client-geo-location
description: Longitude and latitude.
example: '{ "lon": -73.614830, "lat": 45.505918 }'
flat_name: client.geo.location
level: core
name: location
normalize: []
original_fieldset: geo
short: Longitude and latitude.
type: geo_point
client.geo.name:
dashed_name: client-geo-name
description: 'User-defined description of a location, at the level of granularity
they care about.
Could be the name of their data centers, the floor number, if this describes a
local physical entity, city names.
Not typically used in automated geolocation.'
example: boston-dc
flat_name: client.geo.name
ignore_above: 1024
level: extended
name: name
normalize: []
original_fieldset: geo
short: User-defined description of a location.
type: keyword
client.geo.postal_code:
dashed_name: client-geo-postal-code
description: 'Postal code associated with the location.
Values appropriate for this field may also be known as a postcode or ZIP code
and will vary widely from country to country.'
example: 94040
flat_name: client.geo.postal_code
ignore_above: 1024
level: core
name: postal_code
normalize: []
original_fieldset: geo
short: Postal code.
type: keyword
client.geo.region_iso_code:
dashed_name: client-geo-region-iso-code
description: Region ISO code.
example: CA-QC
flat_name: client.geo.region_iso_code
ignore_above: 1024
level: core
name: region_iso_code
normalize: []
original_fieldset: geo
short: Region ISO code.
type: keyword
client.geo.region_name:
dashed_name: client-geo-region-name
description: Region name.
example: Quebec
flat_name: client.geo.region_name
ignore_above: 1024
level: core
name: region_name
normalize: []
original_fieldset: geo
short: Region name.
type: keyword
client.geo.timezone:
dashed_name: client-geo-timezone
description: The time zone of the location, such as IANA time zone name.
example: America/Argentina/Buenos_Aires
flat_name: client.geo.timezone
ignore_above: 1024
level: core
name: timezone
normalize: []
original_fieldset: geo
short: Time zone.
type: keyword
client.ip:
dashed_name: client-ip
description: IP address of the client (IPv4 or IPv6).
flat_name: client.ip
level: core
name: ip
normalize: []
short: IP address of the client.
type: ip
client.mac:
dashed_name: client-mac
description: 'MAC address of the client.
The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte)
is represented by two [uppercase] hexadecimal digits giving the value of the octet
as an unsigned integer. Successive octets are separated by a hyphen.'
example: 00-00-5E-00-53-23
flat_name: client.mac
ignore_above: 1024
level: core
name: mac
normalize: []
pattern: ^[A-F0-9]{2}(-[A-F0-9]{2}){5,}$
short: MAC address of the client.
type: keyword
client.nat.ip:
dashed_name: client-nat-ip
description: 'Translated IP of source based NAT sessions (e.g. internal client to
internet).
Typically connections traversing load balancers, firewalls, or routers.'
flat_name: client.nat.ip
level: extended
name: nat.ip
normalize: []
short: Client NAT ip address
type: ip
client.nat.port:
dashed_name: client-nat-port
description: 'Translated port of source based NAT sessions (e.g. internal client
to internet).
Typically connections traversing load balancers, firewalls, or routers.'
flat_name: client.nat.port
format: string
level: extended
name: nat.port
normalize: []
short: Client NAT port
type: long
client.packets:
dashed_name: client-packets
description: Packets sent from the client to the server.
example: 12
flat_name: client.packets
level: core
name: packets
normalize: []
short: Packets sent from the client to the server.
type: long
client.port:
dashed_name: client-port
description: Port of the client.
flat_name: client.port
format: string
level: core
name: port
normalize: []
short: Port of the client.
type: long
client.registered_domain:
dashed_name: client-registered-domain
description: 'The highest registered client domain, stripped of the subdomain.
For example, the registered domain for "foo.example.com" is "example.com".
This value can be determined precisely with a list like the public suffix list
(http://publicsuffix.org). Trying to approximate this by simply taking the last
two labels will not work well for TLDs such as "co.uk".'
example: example.com
flat_name: client.registered_domain
ignore_above: 1024
level: extended
name: registered_domain
normalize: []
short: The highest registered client domain, stripped of the subdomain.
type: keyword
client.subdomain:
dashed_name: client-subdomain
description: 'The subdomain portion of a fully qualified domain name includes all
of the names except the host name under the registered_domain. In a partially
qualified domain, or if the the qualification level of the full name cannot be
determined, subdomain contains all of the names below the registered domain.
For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the
domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the
subdomain field should contain "sub2.sub1", with no trailing period.'
example: east
flat_name: client.subdomain
ignore_above: 1024
level: extended
name: subdomain
normalize: []
short: The subdomain of the domain.
type: keyword
client.top_level_domain:
dashed_name: client-top-level-domain
description: 'The effective top level domain (eTLD), also known as the domain suffix,
is the last part of the domain name. For example, the top level domain for example.com
is "com".
This value can be determined precisely with a list like the public suffix list
(http://publicsuffix.org). Trying to approximate this by simply taking the last
label will not work well for effective TLDs such as "co.uk".'
example: co.uk
flat_name: client.top_level_domain
ignore_above: 1024
level: extended
name: top_level_domain
normalize: []
short: The effective top level domain (com, org, net, co.uk).
type: keyword
client.user.domain:
dashed_name: client-user-domain
description: 'Name of the directory the user is a member of.
For example, an LDAP or Active Directory domain name.'
flat_name: client.user.domain
ignore_above: 1024
level: extended
name: domain
normalize: []
original_fieldset: user
short: Name of the directory the user is a member of.
type: keyword
client.user.email:
dashed_name: client-user-email
description: User email address.
flat_name: client.user.email
ignore_above: 1024
level: extended
name: email
normalize: []
original_fieldset: user
short: User email address.
type: keyword
client.user.full_name:
dashed_name: client-user-full-name
description: User's full name, if available.
example: Albert Einstein
flat_name: client.user.full_name
ignore_above: 1024
level: extended
multi_fields:
- flat_name: client.user.full_name.text
name: text
type: match_only_text
name: full_name
normalize: []
original_fieldset: user
short: User's full name, if available.
type: keyword
client.user.group.domain:
dashed_name: client-user-group-domain
description: 'Name of the directory the group is a member of.
For example, an LDAP or Active Directory domain name.'
flat_name: client.user.group.domain
ignore_above: 1024
level: extended
name: domain
normalize: []
original_fieldset: group
short: Name of the directory the group is a member of.
type: keyword
client.user.group.id:
dashed_name: client-user-group-id
description: Unique identifier for the group on the system/platform.
flat_name: client.user.group.id
ignore_above: 1024
level: extended
name: id
normalize: []
original_fieldset: group
short: Unique identifier for the group on the system/platform.
type: keyword
client.user.group.name:
dashed_name: client-user-group-name
description: Name of the group.
flat_name: client.user.group.name
ignore_above: 1024
level: extended
name: name
normalize: []
original_fieldset: group
short: Name of the group.
type: keyword
client.user.hash:
dashed_name: client-user-hash
description: 'Unique user hash to correlate information for a user in anonymized
form.
Useful if `user.id` or `user.name` contain confidential information and cannot
be used.'
flat_name: client.user.hash
ignore_above: 1024
level: extended
name: hash
normalize: []
original_fieldset: user
short: Unique user hash to correlate information for a user in anonymized form.
type: keyword
client.user.id:
dashed_name: client-user-id
description: Unique identifier of the user.
example: S-1-5-21-202424912787-2692429404-2351956786-1000
flat_name: client.user.id
ignore_above: 1024
level: core
name: id
normalize: []
original_fieldset: user
short: Unique identifier of the user.
type: keyword
client.user.name:
dashed_name: client-user-name
description: Short name or login of the user.
example: a.einstein
flat_name: client.user.name
ignore_above: 1024
level: core
multi_fields:
- flat_name: client.user.name.text
name: text
type: match_only_text
name: name
normalize: []
original_fieldset: user
short: Short name or login of the user.
type: keyword
client.user.roles:
dashed_name: client-user-roles
description: Array of user roles at the time of the event.
example: '["kibana_admin", "reporting_user"]'
flat_name: client.user.roles
ignore_above: 1024
level: extended
name: roles
normalize:
- array
original_fieldset: user
short: Array of user roles at the time of the event.
type: keyword
cloud.account.id:
dashed_name: cloud-account-id
description: 'The cloud account or organization id used to identify different entities
in a multi-tenant environment.
Examples: AWS account id, Google Cloud ORG Id, or other unique identifier.'
example: 666777888999
flat_name: cloud.account.id
ignore_above: 1024
level: extended
name: account.id
normalize: []
short: The cloud account or organization id.
type: keyword
cloud.account.name:
dashed_name: cloud-account-name
description: 'The cloud account name or alias used to identify different entities
in a multi-tenant environment.
Examples: AWS account name, Google Cloud ORG display name.'
example: elastic-dev
flat_name: cloud.account.name
ignore_above: 1024
level: extended
name: account.name
normalize: []
short: The cloud account name.
type: keyword
cloud.availability_zone:
dashed_name: cloud-availability-zone
description: Availability zone in which this host, resource, or service is located.
example: us-east-1c
flat_name: cloud.availability_zone
ignore_above: 1024
level: extended
name: availability_zone
normalize: []
short: Availability zone in which this host, resource, or service is located.
type: keyword
cloud.instance.id:
dashed_name: cloud-instance-id
description: Instance ID of the host machine.
example: i-1234567890abcdef0
flat_name: cloud.instance.id
ignore_above: 1024
level: extended
name: instance.id
normalize: []
short: Instance ID of the host machine.
type: keyword
cloud.instance.name:
dashed_name: cloud-instance-name
description: Instance name of the host machine.
flat_name: cloud.instance.name
ignore_above: 1024
level: extended
name: instance.name
normalize: []
short: Instance name of the host machine.
type: keyword
cloud.machine.type:
dashed_name: cloud-machine-type
description: Machine type of the host machine.
example: t2.medium
flat_name: cloud.machine.type
ignore_above: 1024
level: extended
name: machine.type
normalize: []
short: Machine type of the host machine.
type: keyword
cloud.origin.account.id:
dashed_name: cloud-origin-account-id
description: 'The cloud account or organization id used to identify different entities
in a multi-tenant environment.
Examples: AWS account id, Google Cloud ORG Id, or other unique identifier.'
example: 666777888999
flat_name: cloud.origin.account.id
ignore_above: 1024
level: extended
name: account.id
normalize: []
original_fieldset: cloud
short: The cloud account or organization id.
type: keyword
cloud.origin.account.name:
dashed_name: cloud-origin-account-name
description: 'The cloud account name or alias used to identify different entities
in a multi-tenant environment.
Examples: AWS account name, Google Cloud ORG display name.'
example: elastic-dev
flat_name: cloud.origin.account.name
ignore_above: 1024
level: extended
name: account.name
normalize: []
original_fieldset: cloud
short: The cloud account name.
type: keyword
cloud.origin.availability_zone:
dashed_name: cloud-origin-availability-zone
description: Availability zone in which this host, resource, or service is located.
example: us-east-1c
flat_name: cloud.origin.availability_zone
ignore_above: 1024
level: extended
name: availability_zone
normalize: []
original_fieldset: cloud
short: Availability zone in which this host, resource, or service is located.
type: keyword
cloud.origin.instance.id:
dashed_name: cloud-origin-instance-id
description: Instance ID of the host machine.
example: i-1234567890abcdef0
flat_name: cloud.origin.instance.id
ignore_above: 1024
level: extended
name: instance.id
normalize: []
original_fieldset: cloud
short: Instance ID of the host machine.
type: keyword
cloud.origin.instance.name:
dashed_name: cloud-origin-instance-name
description: Instance name of the host machine.
flat_name: cloud.origin.instance.name
ignore_above: 1024
level: extended
name: instance.name
normalize: []
original_fieldset: cloud
short: Instance name of the host machine.
type: keyword
cloud.origin.machine.type:
dashed_name: cloud-origin-machine-type
description: Machine type of the host machine.
example: t2.medium
flat_name: cloud.origin.machine.type
ignore_above: 1024
level: extended
name: machine.type
normalize: []
original_fieldset: cloud
short: Machine type of the host machine.
type: keyword
cloud.origin.project.id:
dashed_name: cloud-origin-project-id
description: 'The cloud project identifier.
Examples: Google Cloud Project id, Azure Project id.'
example: my-project
flat_name: cloud.origin.project.id
ignore_above: 1024
level: extended
name: project.id
normalize: []
original_fieldset: cloud
short: The cloud project id.
type: keyword
cloud.origin.project.name:
dashed_name: cloud-origin-project-name
description: 'The cloud project name.
Examples: Google Cloud Project name, Azure Project name.'
example: my project
flat_name: cloud.origin.project.name
ignore_above: 1024
level: extended
name: project.name
normalize: []
original_fieldset: cloud
short: The cloud project name.
type: keyword
cloud.origin.provider:
dashed_name: cloud-origin-provider
description: Name of the cloud provider. Example values are aws, azure, gcp, or
digitalocean.
example: aws
flat_name: cloud.origin.provider
ignore_above: 1024
level: extended
name: provider
normalize: []
original_fieldset: cloud
short: Name of the cloud provider.
type: keyword
cloud.origin.region:
dashed_name: cloud-origin-region
description: Region in which this host, resource, or service is located.
example: us-east-1
flat_name: cloud.origin.region
ignore_above: 1024
level: extended
name: region
normalize: []
original_fieldset: cloud
short: Region in which this host, resource, or service is located.
type: keyword
cloud.origin.service.name:
dashed_name: cloud-origin-service-name
description: 'The cloud service name is intended to distinguish services running
on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App
Engine, Azure VM vs App Server.
Examples: app engine, app service, cloud run, fargate, lambda.'
example: lambda
flat_name: cloud.origin.service.name
ignore_above: 1024
level: extended
name: service.name
normalize: []
original_fieldset: cloud
short: The cloud service name.
type: keyword
cloud.project.id:
dashed_name: cloud-project-id
description: 'The cloud project identifier.
Examples: Google Cloud Project id, Azure Project id.'
example: my-project
flat_name: cloud.project.id
ignore_above: 1024
level: extended
name: project.id
normalize: []
short: The cloud project id.
type: keyword
cloud.project.name:
dashed_name: cloud-project-name
description: 'The cloud project name.
Examples: Google Cloud Project name, Azure Project name.'
example: my project
flat_name: cloud.project.name
ignore_above: 1024
level: extended
name: project.name
normalize: []
short: The cloud project name.
type: keyword
cloud.provider:
dashed_name: cloud-provider
description: Name of the cloud provider. Example values are aws, azure, gcp, or
digitalocean.
example: aws
flat_name: cloud.provider
ignore_above: 1024
level: extended
name: provider
normalize: []
short: Name of the cloud provider.
type: keyword
cloud.region:
dashed_name: cloud-region
description: Region in which this host, resource, or service is located.
example: us-east-1
flat_name: cloud.region
ignore_above: 1024
level: extended
name: region
normalize: []
short: Region in which this host, resource, or service is located.
type: keyword
cloud.service.name:
dashed_name: cloud-service-name
description: 'The cloud service name is intended to distinguish services running
on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App
Engine, Azure VM vs App Server.
Examples: app engine, app service, cloud run, fargate, lambda.'
example: lambda
flat_name: cloud.service.name
ignore_above: 1024
level: extended
name: service.name
normalize: []
short: The cloud service name.
type: keyword
cloud.target.account.id:
dashed_name: cloud-target-account-id
description: 'The cloud account or organization id used to identify different entities
in a multi-tenant environment.
Examples: AWS account id, Google Cloud ORG Id, or other unique identifier.'
example: 666777888999
flat_name: cloud.target.account.id
ignore_above: 1024
level: extended
name: account.id
normalize: []
original_fieldset: cloud
short: The cloud account or organization id.
type: keyword
cloud.target.account.name:
dashed_name: cloud-target-account-name
description: 'The cloud account name or alias used to identify different entities
in a multi-tenant environment.
Examples: AWS account name, Google Cloud ORG display name.'
example: elastic-dev
flat_name: cloud.target.account.name
ignore_above: 1024
level: extended
name: account.name
normalize: []
original_fieldset: cloud
short: The cloud account name.
type: keyword
cloud.target.availability_zone:
dashed_name: cloud-target-availability-zone
description: Availability zone in which this host, resource, or service is located.
example: us-east-1c
flat_name: cloud.target.availability_zone
ignore_above: 1024
level: extended
name: availability_zone
normalize: []
original_fieldset: cloud
short: Availability zone in which this host, resource, or service is located.
type: keyword
cloud.target.instance.id:
dashed_name: cloud-target-instance-id
description: Instance ID of the host machine.
example: i-1234567890abcdef0
flat_name: cloud.target.instance.id
ignore_above: 1024
level: extended
name: instance.id
normalize: []
original_fieldset: cloud
short: Instance ID of the host machine.
type: keyword
cloud.target.instance.name:
dashed_name: cloud-target-instance-name
description: Instance name of the host machine.
flat_name: cloud.target.instance.name
ignore_above: 1024
level: extended
name: instance.name
normalize: []
original_fieldset: cloud
short: Instance name of the host machine.
type: keyword
cloud.target.machine.type:
dashed_name: cloud-target-machine-type
description: Machine type of the host machine.
example: t2.medium
flat_name: cloud.target.machine.type
ignore_above: 1024
level: extended
name: machine.type
normalize: []
original_fieldset: cloud
short: Machine type of the host machine.
type: keyword
cloud.target.project.id:
dashed_name: cloud-target-project-id
description: 'The cloud project identifier.
Examples: Google Cloud Project id, Azure Project id.'
example: my-project
flat_name: cloud.target.project.id
ignore_above: 1024
level: extended
name: project.id
normalize: []
original_fieldset: cloud
short: The cloud project id.
type: keyword
cloud.target.project.name:
dashed_name: cloud-target-project-name
description: 'The cloud project name.
Examples: Google Cloud Project name, Azure Project name.'
example: my project
flat_name: cloud.target.project.name
ignore_above: 1024
level: extended
name: project.name
normalize: []
original_fieldset: cloud
short: The cloud project name.
type: keyword
cloud.target.provider:
dashed_name: cloud-target-provider
description: Name of the cloud provider. Example values are aws, azure, gcp, or
digitalocean.
example: aws
flat_name: cloud.target.provider
ignore_above: 1024
level: extended
name: provider
normalize: []
original_fieldset: cloud
short: Name of the cloud provider.
type: keyword
cloud.target.region:
dashed_name: cloud-target-region
description: Region in which this host, resource, or service is located.
example: us-east-1
flat_name: cloud.target.region
ignore_above: 1024
level: extended
name: region
normalize: []
original_fieldset: cloud
short: Region in which this host, resource, or service is located.
type: keyword
cloud.target.service.name:
dashed_name: cloud-target-service-name
description: 'The cloud service name is intended to distinguish services running
on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App
Engine, Azure VM vs App Server.
Examples: app engine, app service, cloud run, fargate, lambda.'
example: lambda
flat_name: cloud.target.service.name
ignore_above: 1024
level: extended
name: service.name
normalize: []
original_fieldset: cloud
short: The cloud service name.
type: keyword
container.cpu.usage:
dashed_name: container-cpu-usage
description: 'Percent CPU used which is normalized by the number of CPU cores and
it ranges from 0 to 1. Scaling factor: 1000.'
flat_name: container.cpu.usage
level: extended
name: cpu.usage
normalize: []
scaling_factor: 1000
short: Percent CPU used, between 0 and 1.
type: scaled_float