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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// An alias for an edge.
type Alias struct {
// The canonical name of the alias.
Name *string
// A list of names for the alias, including the canonical name.
Names []string
// The type of the alias.
Type *string
noSmithyDocumentSerde
}
// Value of a segment annotation. Has one of three value types: Number, Boolean,
// or String.
//
// The following types satisfy this interface:
//
// AnnotationValueMemberBooleanValue
// AnnotationValueMemberNumberValue
// AnnotationValueMemberStringValue
type AnnotationValue interface {
isAnnotationValue()
}
// Value for a Boolean annotation.
type AnnotationValueMemberBooleanValue struct {
Value bool
noSmithyDocumentSerde
}
func (*AnnotationValueMemberBooleanValue) isAnnotationValue() {}
// Value for a Number annotation.
type AnnotationValueMemberNumberValue struct {
Value float64
noSmithyDocumentSerde
}
func (*AnnotationValueMemberNumberValue) isAnnotationValue() {}
// Value for a String annotation.
type AnnotationValueMemberStringValue struct {
Value string
noSmithyDocumentSerde
}
func (*AnnotationValueMemberStringValue) isAnnotationValue() {}
// The service within the service graph that has anomalously high fault rates.
type AnomalousService struct {
//
ServiceId *ServiceId
noSmithyDocumentSerde
}
// A list of Availability Zones corresponding to the segments in a trace.
type AvailabilityZoneDetail struct {
// The name of a corresponding Availability Zone.
Name *string
noSmithyDocumentSerde
}
type BackendConnectionErrors struct {
//
ConnectionRefusedCount *int32
//
HTTPCode4XXCount *int32
//
HTTPCode5XXCount *int32
//
OtherCount *int32
//
TimeoutCount *int32
//
UnknownHostCount *int32
noSmithyDocumentSerde
}
// Information about a connection between two services. An edge can be a
// synchronous connection, such as typical call between client and service, or an
// asynchronous link, such as a Lambda function which retrieves an event from an
// SNS queue.
type Edge struct {
// Aliases for the edge.
Aliases []Alias
// Describes an asynchronous connection, with a value of link .
EdgeType *string
// The end time of the last segment on the edge.
EndTime *time.Time
// A histogram that maps the spread of event age when received by consumers. Age
// is calculated each time an event is received. Only populated when EdgeType is
// link .
ReceivedEventAgeHistogram []HistogramEntry
// Identifier of the edge. Unique within a service map.
ReferenceId *int32
// A histogram that maps the spread of client response times on an edge. Only
// populated for synchronous edges.
ResponseTimeHistogram []HistogramEntry
// The start time of the first segment on the edge.
StartTime *time.Time
// Response statistics for segments on the edge.
SummaryStatistics *EdgeStatistics
noSmithyDocumentSerde
}
// Response statistics for an edge.
type EdgeStatistics struct {
// Information about requests that failed with a 4xx Client Error status code.
ErrorStatistics *ErrorStatistics
// Information about requests that failed with a 5xx Server Error status code.
FaultStatistics *FaultStatistics
// The number of requests that completed with a 2xx Success status code.
OkCount *int64
// The total number of completed requests.
TotalCount *int64
// The aggregate response time of completed requests.
TotalResponseTime *float64
noSmithyDocumentSerde
}
// A configuration document that specifies encryption configuration settings.
type EncryptionConfig struct {
// The ID of the KMS key used for encryption, if applicable.
KeyId *string
// The encryption status. While the status is UPDATING , X-Ray may encrypt data
// with a combination of the new and old settings.
Status EncryptionStatus
// The type of encryption. Set to KMS for encryption with KMS keys. Set to NONE
// for default encryption.
Type EncryptionType
noSmithyDocumentSerde
}
// The root cause of a trace summary error.
type ErrorRootCause struct {
// A flag that denotes that the root cause impacts the trace client.
ClientImpacting *bool
// A list of services corresponding to an error. A service identifies a segment
// and it contains a name, account ID, type, and inferred flag.
Services []ErrorRootCauseService
noSmithyDocumentSerde
}
// A collection of segments and corresponding subsegments associated to a trace
// summary error.
type ErrorRootCauseEntity struct {
// The types and messages of the exceptions.
Exceptions []RootCauseException
// The name of the entity.
Name *string
// A flag that denotes a remote subsegment.
Remote *bool
noSmithyDocumentSerde
}
// A collection of fields identifying the services in a trace summary error.
type ErrorRootCauseService struct {
// The account ID associated to the service.
AccountId *string
// The path of root cause entities found on the service.
EntityPath []ErrorRootCauseEntity
// A Boolean value indicating if the service is inferred from the trace.
Inferred *bool
// The service name.
Name *string
// A collection of associated service names.
Names []string
// The type associated to the service.
Type *string
noSmithyDocumentSerde
}
// Information about requests that failed with a 4xx Client Error status code.
type ErrorStatistics struct {
// The number of requests that failed with untracked 4xx Client Error status codes.
OtherCount *int64
// The number of requests that failed with a 419 throttling status code.
ThrottleCount *int64
// The total number of requests that failed with a 4xx Client Error status code.
TotalCount *int64
noSmithyDocumentSerde
}
// The root cause information for a trace summary fault.
type FaultRootCause struct {
// A flag that denotes that the root cause impacts the trace client.
ClientImpacting *bool
// A list of corresponding services. A service identifies a segment and it
// contains a name, account ID, type, and inferred flag.
Services []FaultRootCauseService
noSmithyDocumentSerde
}
// A collection of segments and corresponding subsegments associated to a trace
// summary fault error.
type FaultRootCauseEntity struct {
// The types and messages of the exceptions.
Exceptions []RootCauseException
// The name of the entity.
Name *string
// A flag that denotes a remote subsegment.
Remote *bool
noSmithyDocumentSerde
}
// A collection of fields identifying the services in a trace summary fault.
type FaultRootCauseService struct {
// The account ID associated to the service.
AccountId *string
// The path of root cause entities found on the service.
EntityPath []FaultRootCauseEntity
// A Boolean value indicating if the service is inferred from the trace.
Inferred *bool
// The service name.
Name *string
// A collection of associated service names.
Names []string
// The type associated to the service.
Type *string
noSmithyDocumentSerde
}
// Information about requests that failed with a 5xx Server Error status code.
type FaultStatistics struct {
// The number of requests that failed with untracked 5xx Server Error status codes.
OtherCount *int64
// The total number of requests that failed with a 5xx Server Error status code.
TotalCount *int64
noSmithyDocumentSerde
}
// The predicted high and low fault count. This is used to determine if a service
// has become anomalous and if an insight should be created.
type ForecastStatistics struct {
// The upper limit of fault counts for a service.
FaultCountHigh *int64
// The lower limit of fault counts for a service.
FaultCountLow *int64
noSmithyDocumentSerde
}
// Details and metadata for a group.
type Group struct {
// The filter expression defining the parameters to include traces.
FilterExpression *string
// The Amazon Resource Name (ARN) of the group generated based on the GroupName.
GroupARN *string
// The unique case-sensitive name of the group.
GroupName *string
// The structure containing configurations related to insights.
// - The InsightsEnabled boolean can be set to true to enable insights for the
// group or false to disable insights for the group.
// - The NotificationsEnabled boolean can be set to true to enable insights
// notifications through Amazon EventBridge for the group.
InsightsConfiguration *InsightsConfiguration
noSmithyDocumentSerde
}
// Details for a group without metadata.
type GroupSummary struct {
// The filter expression defining the parameters to include traces.
FilterExpression *string
// The ARN of the group generated based on the GroupName.
GroupARN *string
// The unique case-sensitive name of the group.
GroupName *string
// The structure containing configurations related to insights.
// - The InsightsEnabled boolean can be set to true to enable insights for the
// group or false to disable insights for the group.
// - The NotificationsEnabled boolean can be set to true to enable insights
// notifications. Notifications can only be enabled on a group with InsightsEnabled
// set to true.
InsightsConfiguration *InsightsConfiguration
noSmithyDocumentSerde
}
// An entry in a histogram for a statistic. A histogram maps the range of observed
// values on the X axis, and the prevalence of each value on the Y axis.
type HistogramEntry struct {
// The prevalence of the entry.
Count int32
// The value of the entry.
Value float64
noSmithyDocumentSerde
}
// Information about an HTTP request.
type Http struct {
// The IP address of the requestor.
ClientIp *string
// The request method.
HttpMethod *string
// The response status.
HttpStatus *int32
// The request URL.
HttpURL *string
// The request's user agent string.
UserAgent *string
noSmithyDocumentSerde
}
// When fault rates go outside of the expected range, X-Ray creates an insight.
// Insights tracks emergent issues within your applications.
type Insight struct {
// The categories that label and describe the type of insight.
Categories []InsightCategory
// The impact statistics of the client side service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
ClientRequestImpactStatistics *RequestImpactStatistics
// The time, in Unix seconds, at which the insight ended.
EndTime *time.Time
// The Amazon Resource Name (ARN) of the group that the insight belongs to.
GroupARN *string
// The name of the group that the insight belongs to.
GroupName *string
// The insights unique identifier.
InsightId *string
//
RootCauseServiceId *ServiceId
// The impact statistics of the root cause service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
RootCauseServiceRequestImpactStatistics *RequestImpactStatistics
// The time, in Unix seconds, at which the insight began.
StartTime *time.Time
// The current state of the insight.
State InsightState
// A brief description of the insight.
Summary *string
// The service within the insight that is most impacted by the incident.
TopAnomalousServices []AnomalousService
noSmithyDocumentSerde
}
// X-Ray reevaluates insights periodically until they are resolved, and records
// each intermediate state in an event. You can review incident events in the
// Impact Timeline on the Inspect page in the X-Ray console.
type InsightEvent struct {
// The impact statistics of the client side service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
ClientRequestImpactStatistics *RequestImpactStatistics
// The time, in Unix seconds, at which the event was recorded.
EventTime *time.Time
// The impact statistics of the root cause service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
RootCauseServiceRequestImpactStatistics *RequestImpactStatistics
// A brief description of the event.
Summary *string
// The service during the event that is most impacted by the incident.
TopAnomalousServices []AnomalousService
noSmithyDocumentSerde
}
// The connection between two service in an insight impact graph.
type InsightImpactGraphEdge struct {
// Identifier of the edge. Unique within a service map.
ReferenceId *int32
noSmithyDocumentSerde
}
// Information about an application that processed requests, users that made
// requests, or downstream services, resources, and applications that an
// application used.
type InsightImpactGraphService struct {
// Identifier of the Amazon Web Services account in which the service runs.
AccountId *string
// Connections to downstream services.
Edges []InsightImpactGraphEdge
// The canonical name of the service.
Name *string
// A list of names for the service, including the canonical name.
Names []string
// Identifier for the service. Unique within the service map.
ReferenceId *int32
// Identifier for the service. Unique within the service map.
// - Amazon Web Services Resource - The type of an Amazon Web Services resource.
// For example, AWS::EC2::Instance for an application running on Amazon EC2 or
// AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.
// - Amazon Web Services Service - The type of an Amazon Web Services service.
// For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't
// target a specific table.
// - Amazon Web Services Service - The type of an Amazon Web Services service.
// For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't
// target a specific table.
// - remote - A downstream service of indeterminate type.
Type *string
noSmithyDocumentSerde
}
// The structure containing configurations related to insights.
type InsightsConfiguration struct {
// Set the InsightsEnabled value to true to enable insights or false to disable
// insights.
InsightsEnabled *bool
// Set the NotificationsEnabled value to true to enable insights notifications.
// Notifications can only be enabled on a group with InsightsEnabled set to true.
NotificationsEnabled *bool
noSmithyDocumentSerde
}
// Information that describes an insight.
type InsightSummary struct {
// Categories The categories that label and describe the type of insight.
Categories []InsightCategory
// The impact statistics of the client side service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
ClientRequestImpactStatistics *RequestImpactStatistics
// The time, in Unix seconds, at which the insight ended.
EndTime *time.Time
// The Amazon Resource Name (ARN) of the group that the insight belongs to.
GroupARN *string
// The name of the group that the insight belongs to.
GroupName *string
// The insights unique identifier.
InsightId *string
// The time, in Unix seconds, that the insight was last updated.
LastUpdateTime *time.Time
//
RootCauseServiceId *ServiceId
// The impact statistics of the root cause service. This includes the number of
// requests to the client service and whether the requests were faults or okay.
RootCauseServiceRequestImpactStatistics *RequestImpactStatistics
// The time, in Unix seconds, at which the insight began.
StartTime *time.Time
// The current state of the insight.
State InsightState
// A brief description of the insight.
Summary *string
// The service within the insight that is most impacted by the incident.
TopAnomalousServices []AnomalousService
noSmithyDocumentSerde
}
// A list of EC2 instance IDs corresponding to the segments in a trace.
type InstanceIdDetail struct {
// The ID of a corresponding EC2 instance.
Id *string
noSmithyDocumentSerde
}
// Statistics that describe how the incident has impacted a service.
type RequestImpactStatistics struct {
// The number of requests that have resulted in a fault,
FaultCount *int64
// The number of successful requests.
OkCount *int64
// The total number of requests to the service.
TotalCount *int64
noSmithyDocumentSerde
}
// A list of resources ARNs corresponding to the segments in a trace.
type ResourceARNDetail struct {
// The ARN of a corresponding resource.
ARN *string
noSmithyDocumentSerde
}
// A resource policy grants one or more Amazon Web Services services and accounts
// permissions to access X-Ray. Each resource policy is associated with a specific
// Amazon Web Services account.
type ResourcePolicy struct {
// When the policy was last updated, in Unix time seconds.
LastUpdatedTime *time.Time
// The resource policy document, which can be up to 5kb in size.
PolicyDocument *string
// The name of the resource policy. Must be unique within a specific Amazon Web
// Services account.
PolicyName *string
// Returns the current policy revision id for this policy name.
PolicyRevisionId *string
noSmithyDocumentSerde
}
// The root cause information for a response time warning.
type ResponseTimeRootCause struct {
// A flag that denotes that the root cause impacts the trace client.
ClientImpacting *bool
// A list of corresponding services. A service identifies a segment and contains a
// name, account ID, type, and inferred flag.
Services []ResponseTimeRootCauseService
noSmithyDocumentSerde
}
// A collection of segments and corresponding subsegments associated to a response
// time warning.
type ResponseTimeRootCauseEntity struct {
// The type and messages of the exceptions.
Coverage *float64
// The name of the entity.
Name *string
// A flag that denotes a remote subsegment.
Remote *bool
noSmithyDocumentSerde
}
// A collection of fields identifying the service in a response time warning.
type ResponseTimeRootCauseService struct {
// The account ID associated to the service.
AccountId *string
// The path of root cause entities found on the service.
EntityPath []ResponseTimeRootCauseEntity
// A Boolean value indicating if the service is inferred from the trace.
Inferred *bool
// The service name.
Name *string
// A collection of associated service names.
Names []string
// The type associated to the service.
Type *string
noSmithyDocumentSerde
}
// The exception associated with a root cause.
type RootCauseException struct {
// The message of the exception.
Message *string
// The name of the exception.
Name *string
noSmithyDocumentSerde
}
// A sampling rule that services use to decide whether to instrument a request.
// Rule fields can match properties of the service, or properties of a request. The
// service can ignore rules that don't match its properties.
type SamplingRule struct {
// The percentage of matching requests to instrument, after the reservoir is
// exhausted.
//
// This member is required.
FixedRate float64
// Matches the HTTP method of a request.
//
// This member is required.
HTTPMethod *string
// Matches the hostname from a request URL.
//
// This member is required.
Host *string
// The priority of the sampling rule.
//
// This member is required.
Priority *int32
// A fixed number of matching requests to instrument per second, prior to applying
// the fixed rate. The reservoir is not used directly by services, but applies to
// all services using the rule collectively.
//
// This member is required.
ReservoirSize int32
// Matches the ARN of the Amazon Web Services resource on which the service runs.
//
// This member is required.
ResourceARN *string
// Matches the name that the service uses to identify itself in segments.
//
// This member is required.
ServiceName *string
// Matches the origin that the service uses to identify its type in segments.
//
// This member is required.
ServiceType *string
// Matches the path from a request URL.
//
// This member is required.
URLPath *string
// The version of the sampling rule format ( 1 ).
//
// This member is required.
Version *int32
// Matches attributes derived from the request.
Attributes map[string]string
// The ARN of the sampling rule. Specify a rule by either name or ARN, but not
// both.
RuleARN *string
// The name of the sampling rule. Specify a rule by either name or ARN, but not
// both.
RuleName *string
noSmithyDocumentSerde
}
// A SamplingRule (https://docs.aws.amazon.com/xray/latest/api/API_SamplingRule.html)
// and its metadata.
type SamplingRuleRecord struct {
// When the rule was created.
CreatedAt *time.Time
// When the rule was last modified.
ModifiedAt *time.Time
// The sampling rule.
SamplingRule *SamplingRule
noSmithyDocumentSerde
}
// A document specifying changes to a sampling rule's configuration.
type SamplingRuleUpdate struct {
// Matches attributes derived from the request.
Attributes map[string]string
// The percentage of matching requests to instrument, after the reservoir is
// exhausted.
FixedRate *float64
// Matches the HTTP method of a request.
HTTPMethod *string
// Matches the hostname from a request URL.
Host *string
// The priority of the sampling rule.
Priority *int32
// A fixed number of matching requests to instrument per second, prior to applying
// the fixed rate. The reservoir is not used directly by services, but applies to
// all services using the rule collectively.
ReservoirSize *int32
// Matches the ARN of the Amazon Web Services resource on which the service runs.
ResourceARN *string
// The ARN of the sampling rule. Specify a rule by either name or ARN, but not
// both.
RuleARN *string
// The name of the sampling rule. Specify a rule by either name or ARN, but not
// both.
RuleName *string
// Matches the name that the service uses to identify itself in segments.
ServiceName *string
// Matches the origin that the service uses to identify its type in segments.
ServiceType *string
// Matches the path from a request URL.
URLPath *string
noSmithyDocumentSerde
}
// Request sampling results for a single rule from a service. Results are for the
// last 10 seconds unless the service has been assigned a longer reporting interval
// after a previous call to GetSamplingTargets (https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html)
// .
type SamplingStatisticsDocument struct {
// A unique identifier for the service in hexadecimal.
//
// This member is required.
ClientID *string
// The number of requests that matched the rule.
//
// This member is required.
RequestCount int32
// The name of the sampling rule.
//
// This member is required.
RuleName *string
// The number of requests recorded.
//
// This member is required.
SampledCount int32
// The current time.
//
// This member is required.
Timestamp *time.Time
// The number of requests recorded with borrowed reservoir quota.
BorrowCount int32
noSmithyDocumentSerde
}
// Aggregated request sampling data for a sampling rule across all services for a
// 10-second window.
type SamplingStatisticSummary struct {
// The number of requests recorded with borrowed reservoir quota.
BorrowCount int32
// The number of requests that matched the rule.
RequestCount int32
// The name of the sampling rule.
RuleName *string
// The number of requests recorded.
SampledCount int32
// The start time of the reporting window.
Timestamp *time.Time
noSmithyDocumentSerde
}
// The name and value of a sampling rule to apply to a trace summary.
type SamplingStrategy struct {
// The name of a sampling rule.
Name SamplingStrategyName
// The value of a sampling rule.
Value *float64
noSmithyDocumentSerde
}
// Temporary changes to a sampling rule configuration. To meet the global sampling
// target for a rule, X-Ray calculates a new reservoir for each service based on
// the recent sampling results of all services that called GetSamplingTargets (https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html)
// .
type SamplingTargetDocument struct {
// The percentage of matching requests to instrument, after the reservoir is
// exhausted.
FixedRate float64
// The number of seconds for the service to wait before getting sampling targets
// again.
Interval *int32
// The number of requests per second that X-Ray allocated for this service.
ReservoirQuota *int32
// When the reservoir quota expires.
ReservoirQuotaTTL *time.Time
// The name of the sampling rule.
RuleName *string
noSmithyDocumentSerde
}
// A segment from a trace that has been ingested by the X-Ray service. The segment
// can be compiled from documents uploaded with PutTraceSegments (https://docs.aws.amazon.com/xray/latest/api/API_PutTraceSegments.html)
// , or an inferred segment for a downstream service, generated from a subsegment
// sent by the service that called it. For the full segment document schema, see
// Amazon Web Services X-Ray Segment Documents (https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html)
// in the Amazon Web Services X-Ray Developer Guide.
type Segment struct {
// The segment document.
Document *string
// The segment's ID.
Id *string
noSmithyDocumentSerde
}
// Information about an application that processed requests, users that made
// requests, or downstream services, resources, and applications that an
// application used.
type Service struct {
// Identifier of the Amazon Web Services account in which the service runs.
AccountId *string
// A histogram that maps the spread of service durations.
DurationHistogram []HistogramEntry
// Connections to downstream services.
Edges []Edge
// The end time of the last segment that the service generated.
EndTime *time.Time
// The canonical name of the service.
Name *string
// A list of names for the service, including the canonical name.
Names []string
// Identifier for the service. Unique within the service map.
ReferenceId *int32
// A histogram that maps the spread of service response times.
ResponseTimeHistogram []HistogramEntry
// Indicates that the service was the first service to process a request.
Root *bool
// The start time of the first segment that the service generated.
StartTime *time.Time
// The service's state.
State *string
// Aggregated statistics for the service.
SummaryStatistics *ServiceStatistics
// The type of service.
// - Amazon Web Services Resource - The type of an Amazon Web Services resource.
// For example, AWS::EC2::Instance for an application running on Amazon EC2 or
// AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.
// - Amazon Web Services Service - The type of an Amazon Web Services service.
// For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't
// target a specific table.
// - client - Represents the clients that sent requests to a root service.
// - remote - A downstream service of indeterminate type.
Type *string
noSmithyDocumentSerde
}
type ServiceId struct {
//
AccountId *string
//
Name *string
//
Names []string
//
Type *string
noSmithyDocumentSerde
}
// Response statistics for a service.
type ServiceStatistics struct {
// Information about requests that failed with a 4xx Client Error status code.
ErrorStatistics *ErrorStatistics
// Information about requests that failed with a 5xx Server Error status code.
FaultStatistics *FaultStatistics
// The number of requests that completed with a 2xx Success status code.
OkCount *int64
// The total number of completed requests.
TotalCount *int64
// The aggregate response time of completed requests.
TotalResponseTime *float64
noSmithyDocumentSerde
}
// A map that contains tag keys and tag values to attach to an Amazon Web Services
// X-Ray group or sampling rule. For more information about ways to use tags, see
// Tagging Amazon Web Services resources (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html)
// in the Amazon Web Services General Reference. The following restrictions apply
// to tags:
// - Maximum number of user-applied tags per resource: 50
// - Tag keys and values are case sensitive.
// - Don't use aws: as a prefix for keys; it's reserved for Amazon Web Services
// use. You cannot edit or delete system tags.
type Tag struct {
// A tag key, such as Stage or Name . A tag key cannot be empty. The key can be a
// maximum of 128 characters, and can contain only Unicode letters, numbers, or
// separators, or the following special characters: + - = . _ : /
//
// This member is required.
Key *string
// An optional tag value, such as Production or test-only . The value can be a
// maximum of 255 characters, and contain only Unicode letters, numbers, or
// separators, or the following special characters: + - = . _ : /
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
type TelemetryRecord struct {
//
//
// This member is required.
Timestamp *time.Time
//
BackendConnectionErrors *BackendConnectionErrors
//
SegmentsReceivedCount *int32
//
SegmentsRejectedCount *int32
//
SegmentsSentCount *int32
//
SegmentsSpilloverCount *int32
noSmithyDocumentSerde
}
// A list of TimeSeriesStatistic structures.
type TimeSeriesServiceStatistics struct {
// Response statistics for an edge.
EdgeSummaryStatistics *EdgeStatistics
// The response time histogram for the selected entities.
ResponseTimeHistogram []HistogramEntry
// The forecasted high and low fault count values.
ServiceForecastStatistics *ForecastStatistics
// Response statistics for a service.
ServiceSummaryStatistics *ServiceStatistics
// Timestamp of the window for which statistics are aggregated.
Timestamp *time.Time
noSmithyDocumentSerde
}
// A collection of segment documents with matching trace IDs.
type Trace struct {
// The length of time in seconds between the start time of the root segment and
// the end time of the last segment that completed.
Duration *float64
// The unique identifier for the request that generated the trace's segments and
// subsegments.
Id *string
// LimitExceeded is set to true when the trace has exceeded the Trace document size
// limit. For more information about this limit and other X-Ray limits and quotas,
// see Amazon Web Services X-Ray endpoints and quotas (https://docs.aws.amazon.com/general/latest/gr/xray.html)
// .
LimitExceeded *bool
// Segment documents for the segments and subsegments that comprise the trace.
Segments []Segment
noSmithyDocumentSerde
}
// Metadata generated from the segment documents in a trace.
type TraceSummary struct {
// Annotations from the trace's segment documents.
Annotations map[string][]ValueWithServiceIds
// A list of Availability Zones for any zone corresponding to the trace segments.
AvailabilityZones []AvailabilityZoneDetail
// The length of time in seconds between the start time of the root segment and
// the end time of the last segment that completed.
Duration *float64
// The root of a trace.
EntryPoint *ServiceId
// A collection of ErrorRootCause structures corresponding to the trace segments.
ErrorRootCauses []ErrorRootCause
// A collection of FaultRootCause structures corresponding to the trace segments.
FaultRootCauses []FaultRootCause
// The root segment document has a 400 series error.
HasError *bool
// The root segment document has a 500 series error.
HasFault *bool
// One or more of the segment documents has a 429 throttling error.
HasThrottle *bool
// Information about the HTTP request served by the trace.
Http *Http
// The unique identifier for the request that generated the trace's segments and
// subsegments.
Id *string
// A list of EC2 instance IDs for any instance corresponding to the trace segments.
InstanceIds []InstanceIdDetail
// One or more of the segment documents is in progress.
IsPartial *bool
// The matched time stamp of a defined event.
MatchedEventTime *time.Time
// A list of resource ARNs for any resource corresponding to the trace segments.
ResourceARNs []ResourceARNDetail
// The length of time in seconds between the start and end times of the root
// segment. If the service performs work asynchronously, the response time measures
// the time before the response is sent to the user, while the duration measures
// the amount of time before the last traced activity completes.
ResponseTime *float64
// A collection of ResponseTimeRootCause structures corresponding to the trace
// segments.
ResponseTimeRootCauses []ResponseTimeRootCause
// The revision number of a trace.
Revision int32
// Service IDs from the trace's segment documents.
ServiceIds []ServiceId
// The start time of a trace, based on the earliest trace segment start time.
StartTime *time.Time
// Users from the trace's segment documents.
Users []TraceUser
noSmithyDocumentSerde
}
// Information about a user recorded in segment documents.
type TraceUser struct {
// Services that the user's request hit.
ServiceIds []ServiceId
// The user's name.
UserName *string
noSmithyDocumentSerde
}
// Sampling statistics from a call to GetSamplingTargets (https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html)
// that X-Ray could not process.
type UnprocessedStatistics struct {
// The error code.
ErrorCode *string
// The error message.
Message *string
// The name of the sampling rule.
RuleName *string
noSmithyDocumentSerde
}
// Information about a segment that failed processing.
type UnprocessedTraceSegment struct {
// The error that caused processing to fail.
ErrorCode *string
// The segment's ID.
Id *string
// The error message.
Message *string
noSmithyDocumentSerde
}
// Information about a segment annotation.
type ValueWithServiceIds struct {
// Values of the annotation.
AnnotationValue AnnotationValue
// Services to which the annotation applies.
ServiceIds []ServiceId
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isAnnotationValue() {}
|