Newer
Older
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: monitoring.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
Javi Moreno
committed
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
from . import context_pb2 as context__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='monitoring.proto',
package='monitoring',
syntax='proto3',
serialized_options=None,
serialized_pb=_b('\n\x10monitoring.proto\x12\nmonitoring\x1a\rcontext.proto\"~\n\nKpiRequest\x12\x16\n\x0ekpiDescription\x18\x01 \x01(\t\x12$\n\tdevice_id\x18\x02 \x01(\x0b\x32\x11.context.DeviceId\x12\x32\n\x0fkpi_sample_type\x18\x03 \x01(\x0e\x32\x19.monitoring.KpiSampleType\"h\n\x11MonitorKpiRequest\x12!\n\x06kpi_id\x18\x01 \x01(\x0b\x32\x11.monitoring.KpiId\x12\x18\n\x10\x43onnexion_time_s\x18\x02 \x01(\r\x12\x16\n\x0esample_rate_ms\x18\x03 \x01(\r\"s\n\x11IncludeKpiRequest\x12!\n\x06kpi_id\x18\x01 \x01(\x0b\x32\x11.monitoring.KpiId\x12\x12\n\ntime_stamp\x18\x02 \x01(\t\x12\'\n\tkpi_value\x18\x03 \x01(\x0b\x32\x14.monitoring.KpiValue\"\xd6\x01\n\x03Kpi\x12!\n\x06kpi_id\x18\x01 \x01(\x0b\x32\x11.monitoring.KpiId\x12\x11\n\ttimestamp\x18\x02 \x01(\t\x12\x16\n\x0ekpiDescription\x18\x03 \x01(\t\x12\'\n\tkpi_value\x18\x04 \x01(\x0b\x32\x14.monitoring.KpiValue\x12\x32\n\x0fkpi_sample_type\x18\x05 \x01(\x0e\x32\x19.monitoring.KpiSampleType\x12$\n\tdevice_id\x18\x06 \x01(\x0b\x32\x11.context.DeviceId\"&\n\x05KpiId\x12\x1d\n\x06kpi_id\x18\x01 \x01(\x0b\x32\r.context.Uuid\"T\n\tKpiDevice\x12!\n\x06kpi_id\x18\x01 \x01(\x0b\x32\x11.monitoring.KpiId\x12$\n\tdevice_id\x18\x02 \x01(\x0b\x32\x11.context.DeviceId\"+\n\x07KpiList\x12 \n\x07kpiList\x18\x01 \x03(\x0b\x32\x0f.monitoring.Kpi\"M\n\x08KpiValue\x12\x10\n\x06intVal\x18\x01 \x01(\rH\x00\x12\x13\n\tstringVal\x18\x02 \x01(\tH\x00\x12\x11\n\x07\x62oolVal\x18\x03 \x01(\x08H\x00\x42\x07\n\x05value*x\n\rKpiSampleType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x17\n\x13PACKETS_TRANSMITTED\x10\x65\x12\x14\n\x10PACKETS_RECEIVED\x10\x66\x12\x16\n\x11\x42YTES_TRANSMITTED\x10\xc9\x01\x12\x13\n\x0e\x42YTES_RECEIVED\x10\xca\x01\x32\x80\x03\n\x11MonitoringService\x12\x38\n\tCreateKpi\x12\x16.monitoring.KpiRequest\x1a\x11.monitoring.KpiId\"\x00\x12=\n\nIncludeKpi\x12\x1d.monitoring.IncludeKpiRequest\x1a\x0e.context.Empty\"\x00\x12=\n\nMonitorKpi\x12\x1d.monitoring.MonitorKpiRequest\x1a\x0e.context.Empty\"\x00\x12\x44\n\x11MonitoriDeviceKpi\x12\x1d.monitoring.MonitorKpiRequest\x1a\x0e.context.Empty\"\x00\x12\x36\n\x0cGetStreamKpi\x12\x11.monitoring.KpiId\x1a\x0f.monitoring.Kpi\"\x00\x30\x01\x12\x35\n\rGetInstantKpi\x12\x11.monitoring.KpiId\x1a\x0f.monitoring.Kpi\"\x00\x62\x06proto3')
,
dependencies=[context__pb2.DESCRIPTOR,])
Javi Moreno
committed
_KPISAMPLETYPE = _descriptor.EnumDescriptor(
name='KpiSampleType',
full_name='monitoring.KpiSampleType',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='UNKNOWN', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='PACKETS_TRANSMITTED', index=1, number=101,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='PACKETS_RECEIVED', index=2, number=102,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='BYTES_TRANSMITTED', index=3, number=201,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='BYTES_RECEIVED', index=4, number=202,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
Javi Moreno
committed
)
_sym_db.RegisterEnumDescriptor(_KPISAMPLETYPE)
Javi Moreno
committed
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
KpiSampleType = enum_type_wrapper.EnumTypeWrapper(_KPISAMPLETYPE)
UNKNOWN = 0
PACKETS_TRANSMITTED = 101
PACKETS_RECEIVED = 102
BYTES_TRANSMITTED = 201
BYTES_RECEIVED = 202
_KPIREQUEST = _descriptor.Descriptor(
name='KpiRequest',
full_name='monitoring.KpiRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpiDescription', full_name='monitoring.KpiRequest.kpiDescription', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='device_id', full_name='monitoring.KpiRequest.device_id', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='kpi_sample_type', full_name='monitoring.KpiRequest.kpi_sample_type', index=2,
number=3, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=47,
serialized_end=173,
)
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
_MONITORKPIREQUEST = _descriptor.Descriptor(
name='MonitorKpiRequest',
full_name='monitoring.MonitorKpiRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpi_id', full_name='monitoring.MonitorKpiRequest.kpi_id', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='Connexion_time_s', full_name='monitoring.MonitorKpiRequest.Connexion_time_s', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='sample_rate_ms', full_name='monitoring.MonitorKpiRequest.sample_rate_ms', index=2,
number=3, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=175,
serialized_end=279,
)
_INCLUDEKPIREQUEST = _descriptor.Descriptor(
name='IncludeKpiRequest',
full_name='monitoring.IncludeKpiRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpi_id', full_name='monitoring.IncludeKpiRequest.kpi_id', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='time_stamp', full_name='monitoring.IncludeKpiRequest.time_stamp', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='kpi_value', full_name='monitoring.IncludeKpiRequest.kpi_value', index=2,
number=3, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=281,
serialized_end=396,
)
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
_KPI = _descriptor.Descriptor(
name='Kpi',
full_name='monitoring.Kpi',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpi_id', full_name='monitoring.Kpi.kpi_id', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='timestamp', full_name='monitoring.Kpi.timestamp', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='kpiDescription', full_name='monitoring.Kpi.kpiDescription', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='kpi_value', full_name='monitoring.Kpi.kpi_value', index=3,
number=4, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
Javi Moreno
committed
_descriptor.FieldDescriptor(
name='kpi_sample_type', full_name='monitoring.Kpi.kpi_sample_type', index=4,
number=5, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='device_id', full_name='monitoring.Kpi.device_id', index=5,
number=6, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
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
)
_KPIID = _descriptor.Descriptor(
name='KpiId',
full_name='monitoring.KpiId',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpi_id', full_name='monitoring.KpiId.kpi_id', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
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
)
_KPIDEVICE = _descriptor.Descriptor(
name='KpiDevice',
full_name='monitoring.KpiDevice',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpi_id', full_name='monitoring.KpiDevice.kpi_id', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='device_id', full_name='monitoring.KpiDevice.device_id', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
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
)
_KPILIST = _descriptor.Descriptor(
name='KpiList',
full_name='monitoring.KpiList',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='kpiList', full_name='monitoring.KpiList.kpiList', index=0,
number=1, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
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
)
_KPIVALUE = _descriptor.Descriptor(
name='KpiValue',
full_name='monitoring.KpiValue',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='intVal', full_name='monitoring.KpiValue.intVal', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='stringVal', full_name='monitoring.KpiValue.stringVal', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='boolVal', full_name='monitoring.KpiValue.boolVal', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='value', full_name='monitoring.KpiValue.value',
index=0, containing_type=None, fields=[]),
],
Javi Moreno
committed
_KPIREQUEST.fields_by_name['device_id'].message_type = context__pb2._DEVICEID
_KPIREQUEST.fields_by_name['kpi_sample_type'].enum_type = _KPISAMPLETYPE
_MONITORKPIREQUEST.fields_by_name['kpi_id'].message_type = _KPIID
_INCLUDEKPIREQUEST.fields_by_name['kpi_id'].message_type = _KPIID
_INCLUDEKPIREQUEST.fields_by_name['kpi_value'].message_type = _KPIVALUE
_KPI.fields_by_name['kpi_id'].message_type = _KPIID
_KPI.fields_by_name['kpi_value'].message_type = _KPIVALUE
Javi Moreno
committed
_KPI.fields_by_name['kpi_sample_type'].enum_type = _KPISAMPLETYPE
_KPI.fields_by_name['device_id'].message_type = context__pb2._DEVICEID
_KPIID.fields_by_name['kpi_id'].message_type = context__pb2._UUID
_KPIDEVICE.fields_by_name['kpi_id'].message_type = _KPIID
_KPIDEVICE.fields_by_name['device_id'].message_type = context__pb2._DEVICEID
_KPILIST.fields_by_name['kpiList'].message_type = _KPI
_KPIVALUE.oneofs_by_name['value'].fields.append(
_KPIVALUE.fields_by_name['intVal'])
_KPIVALUE.fields_by_name['intVal'].containing_oneof = _KPIVALUE.oneofs_by_name['value']
_KPIVALUE.oneofs_by_name['value'].fields.append(
_KPIVALUE.fields_by_name['stringVal'])
_KPIVALUE.fields_by_name['stringVal'].containing_oneof = _KPIVALUE.oneofs_by_name['value']
_KPIVALUE.oneofs_by_name['value'].fields.append(
_KPIVALUE.fields_by_name['boolVal'])
_KPIVALUE.fields_by_name['boolVal'].containing_oneof = _KPIVALUE.oneofs_by_name['value']
Javi Moreno
committed
DESCRIPTOR.message_types_by_name['KpiRequest'] = _KPIREQUEST
DESCRIPTOR.message_types_by_name['MonitorKpiRequest'] = _MONITORKPIREQUEST
DESCRIPTOR.message_types_by_name['IncludeKpiRequest'] = _INCLUDEKPIREQUEST
DESCRIPTOR.message_types_by_name['Kpi'] = _KPI
DESCRIPTOR.message_types_by_name['KpiId'] = _KPIID
DESCRIPTOR.message_types_by_name['KpiDevice'] = _KPIDEVICE
DESCRIPTOR.message_types_by_name['KpiList'] = _KPILIST
DESCRIPTOR.message_types_by_name['KpiValue'] = _KPIVALUE
Javi Moreno
committed
DESCRIPTOR.enum_types_by_name['KpiSampleType'] = _KPISAMPLETYPE
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
Javi Moreno
committed
KpiRequest = _reflection.GeneratedProtocolMessageType('KpiRequest', (_message.Message,), dict(
DESCRIPTOR = _KPIREQUEST,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.KpiRequest)
))
_sym_db.RegisterMessage(KpiRequest)
MonitorKpiRequest = _reflection.GeneratedProtocolMessageType('MonitorKpiRequest', (_message.Message,), dict(
DESCRIPTOR = _MONITORKPIREQUEST,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.MonitorKpiRequest)
))
_sym_db.RegisterMessage(MonitorKpiRequest)
IncludeKpiRequest = _reflection.GeneratedProtocolMessageType('IncludeKpiRequest', (_message.Message,), dict(
DESCRIPTOR = _INCLUDEKPIREQUEST,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.IncludeKpiRequest)
))
_sym_db.RegisterMessage(IncludeKpiRequest)
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
Kpi = _reflection.GeneratedProtocolMessageType('Kpi', (_message.Message,), dict(
DESCRIPTOR = _KPI,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.Kpi)
))
_sym_db.RegisterMessage(Kpi)
KpiId = _reflection.GeneratedProtocolMessageType('KpiId', (_message.Message,), dict(
DESCRIPTOR = _KPIID,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.KpiId)
))
_sym_db.RegisterMessage(KpiId)
KpiDevice = _reflection.GeneratedProtocolMessageType('KpiDevice', (_message.Message,), dict(
DESCRIPTOR = _KPIDEVICE,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.KpiDevice)
))
_sym_db.RegisterMessage(KpiDevice)
KpiList = _reflection.GeneratedProtocolMessageType('KpiList', (_message.Message,), dict(
DESCRIPTOR = _KPILIST,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.KpiList)
))
_sym_db.RegisterMessage(KpiList)
KpiValue = _reflection.GeneratedProtocolMessageType('KpiValue', (_message.Message,), dict(
DESCRIPTOR = _KPIVALUE,
__module__ = 'monitoring_pb2'
# @@protoc_insertion_point(class_scope:monitoring.KpiValue)
))
_sym_db.RegisterMessage(KpiValue)
_MONITORINGSERVICE = _descriptor.ServiceDescriptor(
name='MonitoringService',
full_name='monitoring.MonitoringService',
file=DESCRIPTOR,
index=0,
serialized_options=None,
methods=[
_descriptor.MethodDescriptor(
name='CreateKpi',
full_name='monitoring.MonitoringService.CreateKpi',
index=0,
containing_service=None,
Javi Moreno
committed
input_type=_KPIREQUEST,
output_type=_KPIID,
serialized_options=None,
),
_descriptor.MethodDescriptor(
name='IncludeKpi',
full_name='monitoring.MonitoringService.IncludeKpi',
index=1,
containing_service=None,
input_type=_INCLUDEKPIREQUEST,
output_type=context__pb2._EMPTY,
serialized_options=None,
),
_descriptor.MethodDescriptor(
name='MonitorKpi',
full_name='monitoring.MonitoringService.MonitorKpi',
input_type=_MONITORKPIREQUEST,
output_type=context__pb2._EMPTY,
serialized_options=None,
),
_descriptor.MethodDescriptor(
name='MonitoriDeviceKpi',
full_name='monitoring.MonitoringService.MonitoriDeviceKpi',
index=3,
containing_service=None,
input_type=_MONITORKPIREQUEST,
output_type=context__pb2._EMPTY,
serialized_options=None,
),
_descriptor.MethodDescriptor(
name='GetStreamKpi',
full_name='monitoring.MonitoringService.GetStreamKpi',
containing_service=None,
input_type=_KPIID,
output_type=_KPI,
serialized_options=None,
),
_descriptor.MethodDescriptor(
name='GetInstantKpi',
full_name='monitoring.MonitoringService.GetInstantKpi',
containing_service=None,
input_type=_KPIID,
output_type=_KPI,
serialized_options=None,
),
])
_sym_db.RegisterServiceDescriptor(_MONITORINGSERVICE)
DESCRIPTOR.services_by_name['MonitoringService'] = _MONITORINGSERVICE
# @@protoc_insertion_point(module_scope)