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 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
|
"""
@generated by mypy-protobuf. Do not edit manually!
isort:skip_file
This file defines an interface for exporting monitoring information
out of gRPC servers. See the full design at
https://github.com/grpc/proposal/blob/master/A14-channelz.md
The canonical version of this proto can be found at
https://github.com/grpc/grpc-proto/blob/master/grpc/channelz/v1/channelz.proto
"""
import builtins
import collections.abc
import google.protobuf.any_pb2
import google.protobuf.descriptor
import google.protobuf.duration_pb2
import google.protobuf.internal.containers
import google.protobuf.internal.enum_type_wrapper
import google.protobuf.message
import google.protobuf.timestamp_pb2
import google.protobuf.wrappers_pb2
import sys
import typing
if sys.version_info >= (3, 10):
import typing as typing_extensions
else:
import typing_extensions
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
@typing.final
class Channel(google.protobuf.message.Message):
"""Channel is a logical grouping of channels, subchannels, and sockets."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
REF_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
CHANNEL_REF_FIELD_NUMBER: builtins.int
SUBCHANNEL_REF_FIELD_NUMBER: builtins.int
SOCKET_REF_FIELD_NUMBER: builtins.int
@property
def ref(self) -> global___ChannelRef:
"""The identifier for this channel. This should be set."""
@property
def data(self) -> global___ChannelData:
"""Data specific to this channel.
At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
"""
@property
def channel_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ChannelRef]:
"""There are no ordering guarantees on the order of channel refs.
There may not be cycles in the ref graph.
A channel ref may be present in more than one channel or subchannel.
"""
@property
def subchannel_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SubchannelRef]:
"""At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
There are no ordering guarantees on the order of subchannel refs.
There may not be cycles in the ref graph.
A sub channel ref may be present in more than one channel or subchannel.
"""
@property
def socket_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SocketRef]:
"""There are no ordering guarantees on the order of sockets."""
def __init__(
self,
*,
ref: global___ChannelRef | None = ...,
data: global___ChannelData | None = ...,
channel_ref: collections.abc.Iterable[global___ChannelRef] | None = ...,
subchannel_ref: collections.abc.Iterable[global___SubchannelRef] | None = ...,
socket_ref: collections.abc.Iterable[global___SocketRef] | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["data", b"data", "ref", b"ref"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["channel_ref", b"channel_ref", "data", b"data", "ref", b"ref", "socket_ref", b"socket_ref", "subchannel_ref", b"subchannel_ref"]) -> None: ...
global___Channel = Channel
@typing.final
class Subchannel(google.protobuf.message.Message):
"""Subchannel is a logical grouping of channels, subchannels, and sockets.
A subchannel is load balanced over by it's ancestor
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
REF_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
CHANNEL_REF_FIELD_NUMBER: builtins.int
SUBCHANNEL_REF_FIELD_NUMBER: builtins.int
SOCKET_REF_FIELD_NUMBER: builtins.int
@property
def ref(self) -> global___SubchannelRef:
"""The identifier for this channel."""
@property
def data(self) -> global___ChannelData:
"""Data specific to this channel.
At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
"""
@property
def channel_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ChannelRef]:
"""There are no ordering guarantees on the order of channel refs.
There may not be cycles in the ref graph.
A channel ref may be present in more than one channel or subchannel.
"""
@property
def subchannel_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SubchannelRef]:
"""At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
There are no ordering guarantees on the order of subchannel refs.
There may not be cycles in the ref graph.
A sub channel ref may be present in more than one channel or subchannel.
"""
@property
def socket_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SocketRef]:
"""There are no ordering guarantees on the order of sockets."""
def __init__(
self,
*,
ref: global___SubchannelRef | None = ...,
data: global___ChannelData | None = ...,
channel_ref: collections.abc.Iterable[global___ChannelRef] | None = ...,
subchannel_ref: collections.abc.Iterable[global___SubchannelRef] | None = ...,
socket_ref: collections.abc.Iterable[global___SocketRef] | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["data", b"data", "ref", b"ref"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["channel_ref", b"channel_ref", "data", b"data", "ref", b"ref", "socket_ref", b"socket_ref", "subchannel_ref", b"subchannel_ref"]) -> None: ...
global___Subchannel = Subchannel
@typing.final
class ChannelConnectivityState(google.protobuf.message.Message):
"""These come from the specified states in this document:
https://github.com/grpc/grpc/blob/master/doc/connectivity-semantics-and-api.md
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
class _State:
ValueType = typing.NewType("ValueType", builtins.int)
V: typing_extensions.TypeAlias = ValueType
class _StateEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[ChannelConnectivityState._State.ValueType], builtins.type):
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
UNKNOWN: ChannelConnectivityState._State.ValueType # 0
IDLE: ChannelConnectivityState._State.ValueType # 1
CONNECTING: ChannelConnectivityState._State.ValueType # 2
READY: ChannelConnectivityState._State.ValueType # 3
TRANSIENT_FAILURE: ChannelConnectivityState._State.ValueType # 4
SHUTDOWN: ChannelConnectivityState._State.ValueType # 5
class State(_State, metaclass=_StateEnumTypeWrapper): ...
UNKNOWN: ChannelConnectivityState.State.ValueType # 0
IDLE: ChannelConnectivityState.State.ValueType # 1
CONNECTING: ChannelConnectivityState.State.ValueType # 2
READY: ChannelConnectivityState.State.ValueType # 3
TRANSIENT_FAILURE: ChannelConnectivityState.State.ValueType # 4
SHUTDOWN: ChannelConnectivityState.State.ValueType # 5
STATE_FIELD_NUMBER: builtins.int
state: global___ChannelConnectivityState.State.ValueType
def __init__(
self,
*,
state: global___ChannelConnectivityState.State.ValueType = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["state", b"state"]) -> None: ...
global___ChannelConnectivityState = ChannelConnectivityState
@typing.final
class ChannelData(google.protobuf.message.Message):
"""Channel data is data related to a specific Channel or Subchannel."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
STATE_FIELD_NUMBER: builtins.int
TARGET_FIELD_NUMBER: builtins.int
TRACE_FIELD_NUMBER: builtins.int
CALLS_STARTED_FIELD_NUMBER: builtins.int
CALLS_SUCCEEDED_FIELD_NUMBER: builtins.int
CALLS_FAILED_FIELD_NUMBER: builtins.int
LAST_CALL_STARTED_TIMESTAMP_FIELD_NUMBER: builtins.int
target: builtins.str
"""The target this channel originally tried to connect to. May be absent"""
calls_started: builtins.int
"""The number of calls started on the channel"""
calls_succeeded: builtins.int
"""The number of calls that have completed with an OK status"""
calls_failed: builtins.int
"""The number of calls that have completed with a non-OK status"""
@property
def state(self) -> global___ChannelConnectivityState:
"""The connectivity state of the channel or subchannel. Implementations
should always set this.
"""
@property
def trace(self) -> global___ChannelTrace:
"""A trace of recent events on the channel. May be absent."""
@property
def last_call_started_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a call was started on the channel."""
def __init__(
self,
*,
state: global___ChannelConnectivityState | None = ...,
target: builtins.str = ...,
trace: global___ChannelTrace | None = ...,
calls_started: builtins.int = ...,
calls_succeeded: builtins.int = ...,
calls_failed: builtins.int = ...,
last_call_started_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["last_call_started_timestamp", b"last_call_started_timestamp", "state", b"state", "trace", b"trace"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["calls_failed", b"calls_failed", "calls_started", b"calls_started", "calls_succeeded", b"calls_succeeded", "last_call_started_timestamp", b"last_call_started_timestamp", "state", b"state", "target", b"target", "trace", b"trace"]) -> None: ...
global___ChannelData = ChannelData
@typing.final
class ChannelTraceEvent(google.protobuf.message.Message):
"""A trace event is an interesting thing that happened to a channel or
subchannel, such as creation, address resolution, subchannel creation, etc.
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
class _Severity:
ValueType = typing.NewType("ValueType", builtins.int)
V: typing_extensions.TypeAlias = ValueType
class _SeverityEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[ChannelTraceEvent._Severity.ValueType], builtins.type):
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
CT_UNKNOWN: ChannelTraceEvent._Severity.ValueType # 0
CT_INFO: ChannelTraceEvent._Severity.ValueType # 1
CT_WARNING: ChannelTraceEvent._Severity.ValueType # 2
CT_ERROR: ChannelTraceEvent._Severity.ValueType # 3
class Severity(_Severity, metaclass=_SeverityEnumTypeWrapper):
"""The supported severity levels of trace events."""
CT_UNKNOWN: ChannelTraceEvent.Severity.ValueType # 0
CT_INFO: ChannelTraceEvent.Severity.ValueType # 1
CT_WARNING: ChannelTraceEvent.Severity.ValueType # 2
CT_ERROR: ChannelTraceEvent.Severity.ValueType # 3
DESCRIPTION_FIELD_NUMBER: builtins.int
SEVERITY_FIELD_NUMBER: builtins.int
TIMESTAMP_FIELD_NUMBER: builtins.int
CHANNEL_REF_FIELD_NUMBER: builtins.int
SUBCHANNEL_REF_FIELD_NUMBER: builtins.int
description: builtins.str
"""High level description of the event."""
severity: global___ChannelTraceEvent.Severity.ValueType
"""the severity of the trace event"""
@property
def timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""When this event occurred."""
@property
def channel_ref(self) -> global___ChannelRef: ...
@property
def subchannel_ref(self) -> global___SubchannelRef: ...
def __init__(
self,
*,
description: builtins.str = ...,
severity: global___ChannelTraceEvent.Severity.ValueType = ...,
timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
channel_ref: global___ChannelRef | None = ...,
subchannel_ref: global___SubchannelRef | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["channel_ref", b"channel_ref", "child_ref", b"child_ref", "subchannel_ref", b"subchannel_ref", "timestamp", b"timestamp"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["channel_ref", b"channel_ref", "child_ref", b"child_ref", "description", b"description", "severity", b"severity", "subchannel_ref", b"subchannel_ref", "timestamp", b"timestamp"]) -> None: ...
def WhichOneof(self, oneof_group: typing.Literal["child_ref", b"child_ref"]) -> typing.Literal["channel_ref", "subchannel_ref"] | None: ...
global___ChannelTraceEvent = ChannelTraceEvent
@typing.final
class ChannelTrace(google.protobuf.message.Message):
"""ChannelTrace represents the recent events that have occurred on the channel."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
NUM_EVENTS_LOGGED_FIELD_NUMBER: builtins.int
CREATION_TIMESTAMP_FIELD_NUMBER: builtins.int
EVENTS_FIELD_NUMBER: builtins.int
num_events_logged: builtins.int
"""Number of events ever logged in this tracing object. This can differ from
events.size() because events can be overwritten or garbage collected by
implementations.
"""
@property
def creation_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""Time that this channel was created."""
@property
def events(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ChannelTraceEvent]:
"""List of events that have occurred on this channel."""
def __init__(
self,
*,
num_events_logged: builtins.int = ...,
creation_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
events: collections.abc.Iterable[global___ChannelTraceEvent] | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["creation_timestamp", b"creation_timestamp"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["creation_timestamp", b"creation_timestamp", "events", b"events", "num_events_logged", b"num_events_logged"]) -> None: ...
global___ChannelTrace = ChannelTrace
@typing.final
class ChannelRef(google.protobuf.message.Message):
"""ChannelRef is a reference to a Channel."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
CHANNEL_ID_FIELD_NUMBER: builtins.int
NAME_FIELD_NUMBER: builtins.int
channel_id: builtins.int
"""The globally unique id for this channel. Must be a positive number."""
name: builtins.str
"""An optional name associated with the channel."""
def __init__(
self,
*,
channel_id: builtins.int = ...,
name: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["channel_id", b"channel_id", "name", b"name"]) -> None: ...
global___ChannelRef = ChannelRef
@typing.final
class SubchannelRef(google.protobuf.message.Message):
"""SubchannelRef is a reference to a Subchannel."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SUBCHANNEL_ID_FIELD_NUMBER: builtins.int
NAME_FIELD_NUMBER: builtins.int
subchannel_id: builtins.int
"""The globally unique id for this subchannel. Must be a positive number."""
name: builtins.str
"""An optional name associated with the subchannel."""
def __init__(
self,
*,
subchannel_id: builtins.int = ...,
name: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["name", b"name", "subchannel_id", b"subchannel_id"]) -> None: ...
global___SubchannelRef = SubchannelRef
@typing.final
class SocketRef(google.protobuf.message.Message):
"""SocketRef is a reference to a Socket."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SOCKET_ID_FIELD_NUMBER: builtins.int
NAME_FIELD_NUMBER: builtins.int
socket_id: builtins.int
"""The globally unique id for this socket. Must be a positive number."""
name: builtins.str
"""An optional name associated with the socket."""
def __init__(
self,
*,
socket_id: builtins.int = ...,
name: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["name", b"name", "socket_id", b"socket_id"]) -> None: ...
global___SocketRef = SocketRef
@typing.final
class ServerRef(google.protobuf.message.Message):
"""ServerRef is a reference to a Server."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SERVER_ID_FIELD_NUMBER: builtins.int
NAME_FIELD_NUMBER: builtins.int
server_id: builtins.int
"""A globally unique identifier for this server. Must be a positive number."""
name: builtins.str
"""An optional name associated with the server."""
def __init__(
self,
*,
server_id: builtins.int = ...,
name: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["name", b"name", "server_id", b"server_id"]) -> None: ...
global___ServerRef = ServerRef
@typing.final
class Server(google.protobuf.message.Message):
"""Server represents a single server. There may be multiple servers in a single
program.
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
REF_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
LISTEN_SOCKET_FIELD_NUMBER: builtins.int
@property
def ref(self) -> global___ServerRef:
"""The identifier for a Server. This should be set."""
@property
def data(self) -> global___ServerData:
"""The associated data of the Server."""
@property
def listen_socket(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SocketRef]:
"""The sockets that the server is listening on. There are no ordering
guarantees. This may be absent.
"""
def __init__(
self,
*,
ref: global___ServerRef | None = ...,
data: global___ServerData | None = ...,
listen_socket: collections.abc.Iterable[global___SocketRef] | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["data", b"data", "ref", b"ref"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["data", b"data", "listen_socket", b"listen_socket", "ref", b"ref"]) -> None: ...
global___Server = Server
@typing.final
class ServerData(google.protobuf.message.Message):
"""ServerData is data for a specific Server."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
TRACE_FIELD_NUMBER: builtins.int
CALLS_STARTED_FIELD_NUMBER: builtins.int
CALLS_SUCCEEDED_FIELD_NUMBER: builtins.int
CALLS_FAILED_FIELD_NUMBER: builtins.int
LAST_CALL_STARTED_TIMESTAMP_FIELD_NUMBER: builtins.int
calls_started: builtins.int
"""The number of incoming calls started on the server"""
calls_succeeded: builtins.int
"""The number of incoming calls that have completed with an OK status"""
calls_failed: builtins.int
"""The number of incoming calls that have a completed with a non-OK status"""
@property
def trace(self) -> global___ChannelTrace:
"""A trace of recent events on the server. May be absent."""
@property
def last_call_started_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a call was started on the server."""
def __init__(
self,
*,
trace: global___ChannelTrace | None = ...,
calls_started: builtins.int = ...,
calls_succeeded: builtins.int = ...,
calls_failed: builtins.int = ...,
last_call_started_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["last_call_started_timestamp", b"last_call_started_timestamp", "trace", b"trace"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["calls_failed", b"calls_failed", "calls_started", b"calls_started", "calls_succeeded", b"calls_succeeded", "last_call_started_timestamp", b"last_call_started_timestamp", "trace", b"trace"]) -> None: ...
global___ServerData = ServerData
@typing.final
class Socket(google.protobuf.message.Message):
"""Information about an actual connection. Pronounced "sock-ay"."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
REF_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
LOCAL_FIELD_NUMBER: builtins.int
REMOTE_FIELD_NUMBER: builtins.int
SECURITY_FIELD_NUMBER: builtins.int
REMOTE_NAME_FIELD_NUMBER: builtins.int
remote_name: builtins.str
"""Optional, represents the name of the remote endpoint, if different than
the original target name.
"""
@property
def ref(self) -> global___SocketRef:
"""The identifier for the Socket."""
@property
def data(self) -> global___SocketData:
"""Data specific to this Socket."""
@property
def local(self) -> global___Address:
"""The locally bound address."""
@property
def remote(self) -> global___Address:
"""The remote bound address. May be absent."""
@property
def security(self) -> global___Security:
"""Security details for this socket. May be absent if not available, or
there is no security on the socket.
"""
def __init__(
self,
*,
ref: global___SocketRef | None = ...,
data: global___SocketData | None = ...,
local: global___Address | None = ...,
remote: global___Address | None = ...,
security: global___Security | None = ...,
remote_name: builtins.str = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["data", b"data", "local", b"local", "ref", b"ref", "remote", b"remote", "security", b"security"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["data", b"data", "local", b"local", "ref", b"ref", "remote", b"remote", "remote_name", b"remote_name", "security", b"security"]) -> None: ...
global___Socket = Socket
@typing.final
class SocketData(google.protobuf.message.Message):
"""SocketData is data associated for a specific Socket. The fields present
are specific to the implementation, so there may be minor differences in
the semantics. (e.g. flow control windows)
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
STREAMS_STARTED_FIELD_NUMBER: builtins.int
STREAMS_SUCCEEDED_FIELD_NUMBER: builtins.int
STREAMS_FAILED_FIELD_NUMBER: builtins.int
MESSAGES_SENT_FIELD_NUMBER: builtins.int
MESSAGES_RECEIVED_FIELD_NUMBER: builtins.int
KEEP_ALIVES_SENT_FIELD_NUMBER: builtins.int
LAST_LOCAL_STREAM_CREATED_TIMESTAMP_FIELD_NUMBER: builtins.int
LAST_REMOTE_STREAM_CREATED_TIMESTAMP_FIELD_NUMBER: builtins.int
LAST_MESSAGE_SENT_TIMESTAMP_FIELD_NUMBER: builtins.int
LAST_MESSAGE_RECEIVED_TIMESTAMP_FIELD_NUMBER: builtins.int
LOCAL_FLOW_CONTROL_WINDOW_FIELD_NUMBER: builtins.int
REMOTE_FLOW_CONTROL_WINDOW_FIELD_NUMBER: builtins.int
OPTION_FIELD_NUMBER: builtins.int
streams_started: builtins.int
"""The number of streams that have been started."""
streams_succeeded: builtins.int
"""The number of streams that have ended successfully:
On client side, received frame with eos bit set;
On server side, sent frame with eos bit set.
"""
streams_failed: builtins.int
"""The number of streams that have ended unsuccessfully:
On client side, ended without receiving frame with eos bit set;
On server side, ended without sending frame with eos bit set.
"""
messages_sent: builtins.int
"""The number of grpc messages successfully sent on this socket."""
messages_received: builtins.int
"""The number of grpc messages received on this socket."""
keep_alives_sent: builtins.int
"""The number of keep alives sent. This is typically implemented with HTTP/2
ping messages.
"""
@property
def last_local_stream_created_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a stream was created by this endpoint. Usually unset for
servers.
"""
@property
def last_remote_stream_created_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a stream was created by the remote endpoint. Usually unset
for clients.
"""
@property
def last_message_sent_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a message was sent by this endpoint."""
@property
def last_message_received_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""The last time a message was received by this endpoint."""
@property
def local_flow_control_window(self) -> google.protobuf.wrappers_pb2.Int64Value:
"""The amount of window, granted to the local endpoint by the remote endpoint.
This may be slightly out of date due to network latency. This does NOT
include stream level or TCP level flow control info.
"""
@property
def remote_flow_control_window(self) -> google.protobuf.wrappers_pb2.Int64Value:
"""The amount of window, granted to the remote endpoint by the local endpoint.
This may be slightly out of date due to network latency. This does NOT
include stream level or TCP level flow control info.
"""
@property
def option(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SocketOption]:
"""Socket options set on this socket. May be absent if 'summary' is set
on GetSocketRequest.
"""
def __init__(
self,
*,
streams_started: builtins.int = ...,
streams_succeeded: builtins.int = ...,
streams_failed: builtins.int = ...,
messages_sent: builtins.int = ...,
messages_received: builtins.int = ...,
keep_alives_sent: builtins.int = ...,
last_local_stream_created_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
last_remote_stream_created_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
last_message_sent_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
last_message_received_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
local_flow_control_window: google.protobuf.wrappers_pb2.Int64Value | None = ...,
remote_flow_control_window: google.protobuf.wrappers_pb2.Int64Value | None = ...,
option: collections.abc.Iterable[global___SocketOption] | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["last_local_stream_created_timestamp", b"last_local_stream_created_timestamp", "last_message_received_timestamp", b"last_message_received_timestamp", "last_message_sent_timestamp", b"last_message_sent_timestamp", "last_remote_stream_created_timestamp", b"last_remote_stream_created_timestamp", "local_flow_control_window", b"local_flow_control_window", "remote_flow_control_window", b"remote_flow_control_window"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["keep_alives_sent", b"keep_alives_sent", "last_local_stream_created_timestamp", b"last_local_stream_created_timestamp", "last_message_received_timestamp", b"last_message_received_timestamp", "last_message_sent_timestamp", b"last_message_sent_timestamp", "last_remote_stream_created_timestamp", b"last_remote_stream_created_timestamp", "local_flow_control_window", b"local_flow_control_window", "messages_received", b"messages_received", "messages_sent", b"messages_sent", "option", b"option", "remote_flow_control_window", b"remote_flow_control_window", "streams_failed", b"streams_failed", "streams_started", b"streams_started", "streams_succeeded", b"streams_succeeded"]) -> None: ...
global___SocketData = SocketData
@typing.final
class Address(google.protobuf.message.Message):
"""Address represents the address used to create the socket."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
@typing.final
class TcpIpAddress(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
IP_ADDRESS_FIELD_NUMBER: builtins.int
PORT_FIELD_NUMBER: builtins.int
ip_address: builtins.bytes
"""Either the IPv4 or IPv6 address in bytes. Will be either 4 bytes or 16
bytes in length.
"""
port: builtins.int
"""0-64k, or -1 if not appropriate."""
def __init__(
self,
*,
ip_address: builtins.bytes = ...,
port: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["ip_address", b"ip_address", "port", b"port"]) -> None: ...
@typing.final
class UdsAddress(google.protobuf.message.Message):
"""A Unix Domain Socket address."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
FILENAME_FIELD_NUMBER: builtins.int
filename: builtins.str
def __init__(
self,
*,
filename: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["filename", b"filename"]) -> None: ...
@typing.final
class OtherAddress(google.protobuf.message.Message):
"""An address type not included above."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
NAME_FIELD_NUMBER: builtins.int
VALUE_FIELD_NUMBER: builtins.int
name: builtins.str
"""The human readable version of the value. This value should be set."""
@property
def value(self) -> google.protobuf.any_pb2.Any:
"""The actual address message."""
def __init__(
self,
*,
name: builtins.str = ...,
value: google.protobuf.any_pb2.Any | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["value", b"value"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["name", b"name", "value", b"value"]) -> None: ...
TCPIP_ADDRESS_FIELD_NUMBER: builtins.int
UDS_ADDRESS_FIELD_NUMBER: builtins.int
OTHER_ADDRESS_FIELD_NUMBER: builtins.int
@property
def tcpip_address(self) -> global___Address.TcpIpAddress: ...
@property
def uds_address(self) -> global___Address.UdsAddress: ...
@property
def other_address(self) -> global___Address.OtherAddress: ...
def __init__(
self,
*,
tcpip_address: global___Address.TcpIpAddress | None = ...,
uds_address: global___Address.UdsAddress | None = ...,
other_address: global___Address.OtherAddress | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["address", b"address", "other_address", b"other_address", "tcpip_address", b"tcpip_address", "uds_address", b"uds_address"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["address", b"address", "other_address", b"other_address", "tcpip_address", b"tcpip_address", "uds_address", b"uds_address"]) -> None: ...
def WhichOneof(self, oneof_group: typing.Literal["address", b"address"]) -> typing.Literal["tcpip_address", "uds_address", "other_address"] | None: ...
global___Address = Address
@typing.final
class Security(google.protobuf.message.Message):
"""Security represents details about how secure the socket is."""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
@typing.final
class Tls(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
STANDARD_NAME_FIELD_NUMBER: builtins.int
OTHER_NAME_FIELD_NUMBER: builtins.int
LOCAL_CERTIFICATE_FIELD_NUMBER: builtins.int
REMOTE_CERTIFICATE_FIELD_NUMBER: builtins.int
standard_name: builtins.str
"""The cipher suite name in the RFC 4346 format:
https://tools.ietf.org/html/rfc4346#appendix-C
"""
other_name: builtins.str
"""Some other way to describe the cipher suite if
the RFC 4346 name is not available.
"""
local_certificate: builtins.bytes
"""the certificate used by this endpoint."""
remote_certificate: builtins.bytes
"""the certificate used by the remote endpoint."""
def __init__(
self,
*,
standard_name: builtins.str = ...,
other_name: builtins.str = ...,
local_certificate: builtins.bytes = ...,
remote_certificate: builtins.bytes = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["cipher_suite", b"cipher_suite", "other_name", b"other_name", "standard_name", b"standard_name"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["cipher_suite", b"cipher_suite", "local_certificate", b"local_certificate", "other_name", b"other_name", "remote_certificate", b"remote_certificate", "standard_name", b"standard_name"]) -> None: ...
def WhichOneof(self, oneof_group: typing.Literal["cipher_suite", b"cipher_suite"]) -> typing.Literal["standard_name", "other_name"] | None: ...
@typing.final
class OtherSecurity(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
NAME_FIELD_NUMBER: builtins.int
VALUE_FIELD_NUMBER: builtins.int
name: builtins.str
"""The human readable version of the value."""
@property
def value(self) -> google.protobuf.any_pb2.Any:
"""The actual security details message."""
def __init__(
self,
*,
name: builtins.str = ...,
value: google.protobuf.any_pb2.Any | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["value", b"value"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["name", b"name", "value", b"value"]) -> None: ...
TLS_FIELD_NUMBER: builtins.int
OTHER_FIELD_NUMBER: builtins.int
@property
def tls(self) -> global___Security.Tls: ...
@property
def other(self) -> global___Security.OtherSecurity: ...
def __init__(
self,
*,
tls: global___Security.Tls | None = ...,
other: global___Security.OtherSecurity | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["model", b"model", "other", b"other", "tls", b"tls"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["model", b"model", "other", b"other", "tls", b"tls"]) -> None: ...
def WhichOneof(self, oneof_group: typing.Literal["model", b"model"]) -> typing.Literal["tls", "other"] | None: ...
global___Security = Security
@typing.final
class SocketOption(google.protobuf.message.Message):
"""SocketOption represents socket options for a socket. Specifically, these
are the options returned by getsockopt().
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
NAME_FIELD_NUMBER: builtins.int
VALUE_FIELD_NUMBER: builtins.int
ADDITIONAL_FIELD_NUMBER: builtins.int
name: builtins.str
"""The full name of the socket option. Typically this will be the upper case
name, such as "SO_REUSEPORT".
"""
value: builtins.str
"""The human readable value of this socket option. At least one of value or
additional will be set.
"""
@property
def additional(self) -> google.protobuf.any_pb2.Any:
"""Additional data associated with the socket option. At least one of value
or additional will be set.
"""
def __init__(
self,
*,
name: builtins.str = ...,
value: builtins.str = ...,
additional: google.protobuf.any_pb2.Any | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["additional", b"additional"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["additional", b"additional", "name", b"name", "value", b"value"]) -> None: ...
global___SocketOption = SocketOption
@typing.final
class SocketOptionTimeout(google.protobuf.message.Message):
"""For use with SocketOption's additional field. This is primarily used for
SO_RCVTIMEO and SO_SNDTIMEO
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
DURATION_FIELD_NUMBER: builtins.int
@property
def duration(self) -> google.protobuf.duration_pb2.Duration: ...
def __init__(
self,
*,
duration: google.protobuf.duration_pb2.Duration | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["duration", b"duration"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["duration", b"duration"]) -> None: ...
global___SocketOptionTimeout = SocketOptionTimeout
@typing.final
class SocketOptionLinger(google.protobuf.message.Message):
"""For use with SocketOption's additional field. This is primarily used for
SO_LINGER.
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
ACTIVE_FIELD_NUMBER: builtins.int
DURATION_FIELD_NUMBER: builtins.int
active: builtins.bool
"""active maps to `struct linger.l_onoff`"""
@property
def duration(self) -> google.protobuf.duration_pb2.Duration:
"""duration maps to `struct linger.l_linger`"""
def __init__(
self,
*,
active: builtins.bool = ...,
duration: google.protobuf.duration_pb2.Duration | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["duration", b"duration"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["active", b"active", "duration", b"duration"]) -> None: ...
global___SocketOptionLinger = SocketOptionLinger
@typing.final
class SocketOptionTcpInfo(google.protobuf.message.Message):
"""For use with SocketOption's additional field. Tcp info for
SOL_TCP and TCP_INFO.
"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
TCPI_STATE_FIELD_NUMBER: builtins.int
TCPI_CA_STATE_FIELD_NUMBER: builtins.int
TCPI_RETRANSMITS_FIELD_NUMBER: builtins.int
TCPI_PROBES_FIELD_NUMBER: builtins.int
TCPI_BACKOFF_FIELD_NUMBER: builtins.int
TCPI_OPTIONS_FIELD_NUMBER: builtins.int
TCPI_SND_WSCALE_FIELD_NUMBER: builtins.int
TCPI_RCV_WSCALE_FIELD_NUMBER: builtins.int
TCPI_RTO_FIELD_NUMBER: builtins.int
TCPI_ATO_FIELD_NUMBER: builtins.int
TCPI_SND_MSS_FIELD_NUMBER: builtins.int
TCPI_RCV_MSS_FIELD_NUMBER: builtins.int
TCPI_UNACKED_FIELD_NUMBER: builtins.int
TCPI_SACKED_FIELD_NUMBER: builtins.int
TCPI_LOST_FIELD_NUMBER: builtins.int
TCPI_RETRANS_FIELD_NUMBER: builtins.int
TCPI_FACKETS_FIELD_NUMBER: builtins.int
TCPI_LAST_DATA_SENT_FIELD_NUMBER: builtins.int
TCPI_LAST_ACK_SENT_FIELD_NUMBER: builtins.int
TCPI_LAST_DATA_RECV_FIELD_NUMBER: builtins.int
TCPI_LAST_ACK_RECV_FIELD_NUMBER: builtins.int
TCPI_PMTU_FIELD_NUMBER: builtins.int
TCPI_RCV_SSTHRESH_FIELD_NUMBER: builtins.int
TCPI_RTT_FIELD_NUMBER: builtins.int
TCPI_RTTVAR_FIELD_NUMBER: builtins.int
TCPI_SND_SSTHRESH_FIELD_NUMBER: builtins.int
TCPI_SND_CWND_FIELD_NUMBER: builtins.int
TCPI_ADVMSS_FIELD_NUMBER: builtins.int
TCPI_REORDERING_FIELD_NUMBER: builtins.int
tcpi_state: builtins.int
tcpi_ca_state: builtins.int
tcpi_retransmits: builtins.int
tcpi_probes: builtins.int
tcpi_backoff: builtins.int
tcpi_options: builtins.int
tcpi_snd_wscale: builtins.int
tcpi_rcv_wscale: builtins.int
tcpi_rto: builtins.int
tcpi_ato: builtins.int
tcpi_snd_mss: builtins.int
tcpi_rcv_mss: builtins.int
tcpi_unacked: builtins.int
tcpi_sacked: builtins.int
tcpi_lost: builtins.int
tcpi_retrans: builtins.int
tcpi_fackets: builtins.int
tcpi_last_data_sent: builtins.int
tcpi_last_ack_sent: builtins.int
tcpi_last_data_recv: builtins.int
tcpi_last_ack_recv: builtins.int
tcpi_pmtu: builtins.int
tcpi_rcv_ssthresh: builtins.int
tcpi_rtt: builtins.int
tcpi_rttvar: builtins.int
tcpi_snd_ssthresh: builtins.int
tcpi_snd_cwnd: builtins.int
tcpi_advmss: builtins.int
tcpi_reordering: builtins.int
def __init__(
self,
*,
tcpi_state: builtins.int = ...,
tcpi_ca_state: builtins.int = ...,
tcpi_retransmits: builtins.int = ...,
tcpi_probes: builtins.int = ...,
tcpi_backoff: builtins.int = ...,
tcpi_options: builtins.int = ...,
tcpi_snd_wscale: builtins.int = ...,
tcpi_rcv_wscale: builtins.int = ...,
tcpi_rto: builtins.int = ...,
tcpi_ato: builtins.int = ...,
tcpi_snd_mss: builtins.int = ...,
tcpi_rcv_mss: builtins.int = ...,
tcpi_unacked: builtins.int = ...,
tcpi_sacked: builtins.int = ...,
tcpi_lost: builtins.int = ...,
tcpi_retrans: builtins.int = ...,
tcpi_fackets: builtins.int = ...,
tcpi_last_data_sent: builtins.int = ...,
tcpi_last_ack_sent: builtins.int = ...,
tcpi_last_data_recv: builtins.int = ...,
tcpi_last_ack_recv: builtins.int = ...,
tcpi_pmtu: builtins.int = ...,
tcpi_rcv_ssthresh: builtins.int = ...,
tcpi_rtt: builtins.int = ...,
tcpi_rttvar: builtins.int = ...,
tcpi_snd_ssthresh: builtins.int = ...,
tcpi_snd_cwnd: builtins.int = ...,
tcpi_advmss: builtins.int = ...,
tcpi_reordering: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["tcpi_advmss", b"tcpi_advmss", "tcpi_ato", b"tcpi_ato", "tcpi_backoff", b"tcpi_backoff", "tcpi_ca_state", b"tcpi_ca_state", "tcpi_fackets", b"tcpi_fackets", "tcpi_last_ack_recv", b"tcpi_last_ack_recv", "tcpi_last_ack_sent", b"tcpi_last_ack_sent", "tcpi_last_data_recv", b"tcpi_last_data_recv", "tcpi_last_data_sent", b"tcpi_last_data_sent", "tcpi_lost", b"tcpi_lost", "tcpi_options", b"tcpi_options", "tcpi_pmtu", b"tcpi_pmtu", "tcpi_probes", b"tcpi_probes", "tcpi_rcv_mss", b"tcpi_rcv_mss", "tcpi_rcv_ssthresh", b"tcpi_rcv_ssthresh", "tcpi_rcv_wscale", b"tcpi_rcv_wscale", "tcpi_reordering", b"tcpi_reordering", "tcpi_retrans", b"tcpi_retrans", "tcpi_retransmits", b"tcpi_retransmits", "tcpi_rto", b"tcpi_rto", "tcpi_rtt", b"tcpi_rtt", "tcpi_rttvar", b"tcpi_rttvar", "tcpi_sacked", b"tcpi_sacked", "tcpi_snd_cwnd", b"tcpi_snd_cwnd", "tcpi_snd_mss", b"tcpi_snd_mss", "tcpi_snd_ssthresh", b"tcpi_snd_ssthresh", "tcpi_snd_wscale", b"tcpi_snd_wscale", "tcpi_state", b"tcpi_state", "tcpi_unacked", b"tcpi_unacked"]) -> None: ...
global___SocketOptionTcpInfo = SocketOptionTcpInfo
@typing.final
class GetTopChannelsRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
START_CHANNEL_ID_FIELD_NUMBER: builtins.int
MAX_RESULTS_FIELD_NUMBER: builtins.int
start_channel_id: builtins.int
"""start_channel_id indicates that only channels at or above this id should be
included in the results.
To request the first page, this should be set to 0. To request
subsequent pages, the client generates this value by adding 1 to
the highest seen result ID.
"""
max_results: builtins.int
"""If non-zero, the server will return a page of results containing
at most this many items. If zero, the server will choose a
reasonable page size. Must never be negative.
"""
def __init__(
self,
*,
start_channel_id: builtins.int = ...,
max_results: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["max_results", b"max_results", "start_channel_id", b"start_channel_id"]) -> None: ...
global___GetTopChannelsRequest = GetTopChannelsRequest
@typing.final
class GetTopChannelsResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
CHANNEL_FIELD_NUMBER: builtins.int
END_FIELD_NUMBER: builtins.int
end: builtins.bool
"""If set, indicates that the list of channels is the final list. Requesting
more channels can only return more if they are created after this RPC
completes.
"""
@property
def channel(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Channel]:
"""list of channels that the connection detail service knows about. Sorted in
ascending channel_id order.
Must contain at least 1 result, otherwise 'end' must be true.
"""
def __init__(
self,
*,
channel: collections.abc.Iterable[global___Channel] | None = ...,
end: builtins.bool = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["channel", b"channel", "end", b"end"]) -> None: ...
global___GetTopChannelsResponse = GetTopChannelsResponse
@typing.final
class GetServersRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
START_SERVER_ID_FIELD_NUMBER: builtins.int
MAX_RESULTS_FIELD_NUMBER: builtins.int
start_server_id: builtins.int
"""start_server_id indicates that only servers at or above this id should be
included in the results.
To request the first page, this must be set to 0. To request
subsequent pages, the client generates this value by adding 1 to
the highest seen result ID.
"""
max_results: builtins.int
"""If non-zero, the server will return a page of results containing
at most this many items. If zero, the server will choose a
reasonable page size. Must never be negative.
"""
def __init__(
self,
*,
start_server_id: builtins.int = ...,
max_results: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["max_results", b"max_results", "start_server_id", b"start_server_id"]) -> None: ...
global___GetServersRequest = GetServersRequest
@typing.final
class GetServersResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SERVER_FIELD_NUMBER: builtins.int
END_FIELD_NUMBER: builtins.int
end: builtins.bool
"""If set, indicates that the list of servers is the final list. Requesting
more servers will only return more if they are created after this RPC
completes.
"""
@property
def server(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Server]:
"""list of servers that the connection detail service knows about. Sorted in
ascending server_id order.
Must contain at least 1 result, otherwise 'end' must be true.
"""
def __init__(
self,
*,
server: collections.abc.Iterable[global___Server] | None = ...,
end: builtins.bool = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["end", b"end", "server", b"server"]) -> None: ...
global___GetServersResponse = GetServersResponse
@typing.final
class GetServerRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SERVER_ID_FIELD_NUMBER: builtins.int
server_id: builtins.int
"""server_id is the identifier of the specific server to get."""
def __init__(
self,
*,
server_id: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["server_id", b"server_id"]) -> None: ...
global___GetServerRequest = GetServerRequest
@typing.final
class GetServerResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SERVER_FIELD_NUMBER: builtins.int
@property
def server(self) -> global___Server:
"""The Server that corresponds to the requested server_id. This field
should be set.
"""
def __init__(
self,
*,
server: global___Server | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["server", b"server"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["server", b"server"]) -> None: ...
global___GetServerResponse = GetServerResponse
@typing.final
class GetServerSocketsRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SERVER_ID_FIELD_NUMBER: builtins.int
START_SOCKET_ID_FIELD_NUMBER: builtins.int
MAX_RESULTS_FIELD_NUMBER: builtins.int
server_id: builtins.int
start_socket_id: builtins.int
"""start_socket_id indicates that only sockets at or above this id should be
included in the results.
To request the first page, this must be set to 0. To request
subsequent pages, the client generates this value by adding 1 to
the highest seen result ID.
"""
max_results: builtins.int
"""If non-zero, the server will return a page of results containing
at most this many items. If zero, the server will choose a
reasonable page size. Must never be negative.
"""
def __init__(
self,
*,
server_id: builtins.int = ...,
start_socket_id: builtins.int = ...,
max_results: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["max_results", b"max_results", "server_id", b"server_id", "start_socket_id", b"start_socket_id"]) -> None: ...
global___GetServerSocketsRequest = GetServerSocketsRequest
@typing.final
class GetServerSocketsResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SOCKET_REF_FIELD_NUMBER: builtins.int
END_FIELD_NUMBER: builtins.int
end: builtins.bool
"""If set, indicates that the list of sockets is the final list. Requesting
more sockets will only return more if they are created after this RPC
completes.
"""
@property
def socket_ref(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SocketRef]:
"""list of socket refs that the connection detail service knows about. Sorted in
ascending socket_id order.
Must contain at least 1 result, otherwise 'end' must be true.
"""
def __init__(
self,
*,
socket_ref: collections.abc.Iterable[global___SocketRef] | None = ...,
end: builtins.bool = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["end", b"end", "socket_ref", b"socket_ref"]) -> None: ...
global___GetServerSocketsResponse = GetServerSocketsResponse
@typing.final
class GetChannelRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
CHANNEL_ID_FIELD_NUMBER: builtins.int
channel_id: builtins.int
"""channel_id is the identifier of the specific channel to get."""
def __init__(
self,
*,
channel_id: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["channel_id", b"channel_id"]) -> None: ...
global___GetChannelRequest = GetChannelRequest
@typing.final
class GetChannelResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
CHANNEL_FIELD_NUMBER: builtins.int
@property
def channel(self) -> global___Channel:
"""The Channel that corresponds to the requested channel_id. This field
should be set.
"""
def __init__(
self,
*,
channel: global___Channel | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["channel", b"channel"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["channel", b"channel"]) -> None: ...
global___GetChannelResponse = GetChannelResponse
@typing.final
class GetSubchannelRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SUBCHANNEL_ID_FIELD_NUMBER: builtins.int
subchannel_id: builtins.int
"""subchannel_id is the identifier of the specific subchannel to get."""
def __init__(
self,
*,
subchannel_id: builtins.int = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["subchannel_id", b"subchannel_id"]) -> None: ...
global___GetSubchannelRequest = GetSubchannelRequest
@typing.final
class GetSubchannelResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SUBCHANNEL_FIELD_NUMBER: builtins.int
@property
def subchannel(self) -> global___Subchannel:
"""The Subchannel that corresponds to the requested subchannel_id. This
field should be set.
"""
def __init__(
self,
*,
subchannel: global___Subchannel | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["subchannel", b"subchannel"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["subchannel", b"subchannel"]) -> None: ...
global___GetSubchannelResponse = GetSubchannelResponse
@typing.final
class GetSocketRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SOCKET_ID_FIELD_NUMBER: builtins.int
SUMMARY_FIELD_NUMBER: builtins.int
socket_id: builtins.int
"""socket_id is the identifier of the specific socket to get."""
summary: builtins.bool
"""If true, the response will contain only high level information
that is inexpensive to obtain. Fields thay may be omitted are
documented.
"""
def __init__(
self,
*,
socket_id: builtins.int = ...,
summary: builtins.bool = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["socket_id", b"socket_id", "summary", b"summary"]) -> None: ...
global___GetSocketRequest = GetSocketRequest
@typing.final
class GetSocketResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SOCKET_FIELD_NUMBER: builtins.int
@property
def socket(self) -> global___Socket:
"""The Socket that corresponds to the requested socket_id. This field
should be set.
"""
def __init__(
self,
*,
socket: global___Socket | None = ...,
) -> None: ...
def HasField(self, field_name: typing.Literal["socket", b"socket"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["socket", b"socket"]) -> None: ...
global___GetSocketResponse = GetSocketResponse
|