analyzer_log.proto 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.networkanalyzer.logging.v1;
  16. import "google/protobuf/timestamp.proto";
  17. option csharp_namespace = "Google.Cloud.NetworkAnalyzer.Logging.V1";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/networkanalyzer/logging/v1;logging";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "AnalyzerLogProto";
  21. option java_package = "com.google.cloud.networkanalyzer.logging.v1";
  22. option php_namespace = "Google\\Cloud\\NetworkAnalyzer\\Logging\\V1";
  23. option ruby_package = "Google::Cloud::NetworkAnalyzer::Logging::V1";
  24. enum ReportCauseCode {
  25. REPORT_CAUSE_CODE_UNSPECIFIED = 0;
  26. // VPC Basics
  27. ROUTE_INVALID_NEXT_HOP_VM_IP_FORWARDING_DISABLED = 1;
  28. ROUTE_INVALID_NEXT_HOP_VM_DELETED = 2;
  29. ROUTE_INVALID_NEXT_HOP_VM_STOPPED = 3;
  30. ROUTE_INVALID_NEXT_HOP_ILB_MISCONFIGURED = 4;
  31. ROUTE_INVALID_NEXT_HOP_VPN_TUNNEL_DELETED = 5;
  32. ROUTE_INVALID_NEXT_HOP_ILB_BACKEND_IP_FORWARDING_DISABLED = 6;
  33. IP_UTILIZATION_IP_ALLOCATION_RATIO_HIGH = 20;
  34. // Kubernetes Engine
  35. GKE_NODE_TO_CONTROL_PLANE_BLOCKED_BY_ROUTING_ISSUE = 201;
  36. GKE_NODE_TO_CONTROL_PLANE_PUBLIC_ENDPOINT_BLOCKED_BY_EGRESS_FIREWALL = 202;
  37. GKE_NODE_TO_CONTROL_PLANE_PRIVATE_ENDPOINT_BLOCKED_BY_EGRESS_FIREWALL = 203;
  38. GKE_CONTROL_PLANE_TO_NODE_BLOCKED_BY_ROUTING_ISSUE = 211;
  39. GKE_CONTROL_PLANE_TO_NODE_BLOCKED_BY_INGRESS_FIREWALL_ON_NODE = 212;
  40. GKE_IP_UTILIZATION_POD_RANGES_ALLOCATION_HIGH = 221;
  41. GKE_IP_UTILIZATION_POD_RANGES_ALLOCATION_LIMITES_AUTOSCALING = 222;
  42. // Managed Services
  43. CLOUD_SQL_PRIVATE_IP_BLOCKED_BY_EGRESS_FIREWALL = 601;
  44. CLOUD_SQL_PRIVATE_IP_BLOCKED_BY_ROUTING_ISSUE = 602;
  45. CLOUD_SQL_PRIVATE_IP_INSTANCE_NOT_RUNNING = 603;
  46. // Hybrid Connectivity
  47. DYNAMIC_ROUTE_SHADOWED_FULLY_SHADOWED_BY_SUBNET_ROUTE = 801;
  48. DYNAMIC_ROUTE_SHADOWED_FULLY_SHADOWED_BY_PEERING_SUBNET_ROUTE = 802;
  49. DYNAMIC_ROUTE_SHADOWED_FULLY_SHADOWED_BY_STATIC_ROUTE = 803;
  50. DYNAMIC_ROUTE_SHADOWED_FULLY_SHADOWED_BY_PEERING_STATIC_ROUTE = 804;
  51. DYNAMIC_ROUTE_SHADOWED_PARTIALLY_SHADOWED_BY_SUBNET_ROUTE = 805;
  52. DYNAMIC_ROUTE_SHADOWED_PARTIALLY_SHADOWED_BY_PEERING_SUBNET_ROUTE = 806;
  53. DYNAMIC_ROUTE_SHADOWED_PARTIALLY_SHADOWED_BY_STATIC_ROUTE = 807;
  54. DYNAMIC_ROUTE_SHADOWED_PARTIALLY_SHADOWED_BY_PEERING_STATIC_ROUTE = 808;
  55. // Network Services
  56. LOAD_BALANCER_HEALTH_CHECK_FIREWALL_HEALTH_CHECK_FIREWALL_NOT_CONFIGURED = 1001;
  57. LOAD_BALANCER_HEALTH_CHECK_FIREWALL_HEALTH_CHECK_RANGE_BLOCKED = 1002;
  58. LOAD_BALANCER_HEALTH_CHECK_FIREWALL_FIREWALL_CONFIG_INCONSISTENT = 1003;
  59. LOAD_BALANCER_HEALTH_CHECK_FIREWALL_HEALTH_CHECK_RANGE_PARTIALLY_BLOCKED = 1004;
  60. LOAD_BALANCER_BEST_PRACTICES_BACKEND_SERVICE_BALANCING_MODE_BREAKS_SESSION_AFFINITY = 1021;
  61. LOAD_BALANCER_BEST_PRACTICES_BACKEND_SERVICE_HEALTH_CHECK_PORT_MISMATCH = 1024;
  62. }
  63. message IpUtilizationInfo {
  64. message SubnetIpUtilization {
  65. // URI of subnet.
  66. string subnet_uri = 1;
  67. // Secondary range name. If the range is the primary range of the subnet,
  68. // this field is empty.
  69. string secondary_range_name = 2;
  70. // Total number of usable IP addresses in the IP range.
  71. uint64 total_usable_addresses = 3;
  72. // The ratio of allocated IP addresses from the total usable addresses.
  73. double allocation_ratio = 4;
  74. }
  75. repeated SubnetIpUtilization subnet_ip_utilization = 1;
  76. }
  77. // Log entry that describes a report from Network Analyzer.
  78. message Report {
  79. // Priority level of an report.
  80. enum Priority {
  81. SEVERITY_UNSPECIFIED = 0;
  82. CRITICAL = 1;
  83. HIGH = 2;
  84. MEDIUM = 3;
  85. LOW = 4;
  86. }
  87. // Type of an report.
  88. enum Type {
  89. REPORT_TYPE_UNSPECIFIED = 0;
  90. INFO = 1;
  91. WARNING = 2;
  92. ERROR = 3;
  93. }
  94. // Status of an report.
  95. enum ReportStatus {
  96. REPORT_STATUS_UNSPECIFIED = 0;
  97. ACTIVE = 1;
  98. FIXED = 2;
  99. DISMISSED = 3;
  100. }
  101. // Groups of an report.
  102. enum ReportGroup {
  103. CATEGORY_UNSPECIFIED = 0;
  104. VPC_NETWORK = 1;
  105. NETWORK_SERVICES = 2;
  106. KUBERNETES_ENGINE = 3;
  107. HYBRID_CONNECTIVITY = 4;
  108. MANAGED_SERVICES = 5;
  109. }
  110. // The unique identifier of the report.
  111. string id = 1;
  112. // Priority of the report.
  113. Priority priority = 2;
  114. // Type of the report.
  115. Type type = 3;
  116. // Status of the report.
  117. ReportStatus status = 4;
  118. // The timestamp when the report was first discovered by Network Analyzer.
  119. google.protobuf.Timestamp first_report_time = 9;
  120. // Cause code of the report.
  121. ReportCauseCode cause_code = 12;
  122. // The resource that are reported with the report.
  123. // Contains the fully qualified resource name.
  124. // e.g.,
  125. // `//compute.googleapis.com/projects/{project_id}/global/networks/{network}`
  126. string resource_name = 15;
  127. // Location associated with the report. It can be global or GCP regions
  128. // and zones. e.g., https://cloud.google.com/compute/docs/regions-zones/
  129. string location = 16;
  130. // URI to the documentation of the report.
  131. string report_documentation_uri = 17;
  132. // The groups of the report. One report may be present in multiple groups.
  133. repeated ReportGroup report_groups = 18;
  134. oneof content {
  135. IpUtilizationInfo ip_utilization_info = 19;
  136. }
  137. }