@@ -286,7 +286,6 @@ def dump_metric_info_code(self, out, path, counter):
286
286
rpc .metric ('enlistServerCount' , 'number of invocations of ENLIST_SERVER RPC' )
287
287
rpc .metric ('getServerListCount' , 'number of invocations of GET_SERVER_LIST RPC' )
288
288
rpc .metric ('getTabletMapCount' , 'number of invocations of GET_TABLET_MAP RPC' )
289
- rpc .metric ('getServerStatistics' , 'number of invocations of GET_SERVER_STATISTICS RPC' )
290
289
rpc .metric ('recoverCount' , 'number of invocations of RECOVER RPC' )
291
290
rpc .metric ('hintServerDownCount' , 'number of invocations of HINT_SERVER_DOWN RPC' )
292
291
rpc .metric ('recoveryMasterFinishedCount' , 'number of invocations of RECOVERY_MASTER_FINISHED_RPC' )
@@ -310,14 +309,16 @@ def dump_metric_info_code(self, out, path, counter):
310
309
rpc .metric ('dropTabletOwnershipCount' , 'number of invocations of DROP_TABLET_OWNERSHIP RPC' )
311
310
rpc .metric ('takeTabletOwnershipCount' , 'number of invocations of TAKE_TABLET_OWNERSHIP RPC' )
312
311
rpc .metric ('backupAssignGroupCount' , 'number of invocations of BACKUP_ASSIGN_GROUP RPC' )
313
- rpc .metric ('incrementRpcCount' , 'number of invocations of INCREMENT RPC' )
314
- rpc .metric ('splitTabletRpcCount' , 'number of invocations of SPLIT_TABLET RPC' )
315
312
rpc .metric ('getHeadOfLogCount' , 'number of invocations of GET_HEAD_OF_LOG RPC' )
313
+ rpc .metric ('incrementRpcCount' , 'number of invocations of INCREMENT RPC' )
316
314
rpc .metric ('prepForMigrationCount' , 'number of invocations of PREP_FOR_MIGRATION RPC' )
317
315
rpc .metric ('receiveMigrationDataCount' , 'number of invocations of RECEIVE_MIGRATION_DATA RPC' )
318
316
rpc .metric ('reassignTabletOwnershipCount' , 'number of invocations of REASSIGN_TABLET_OWNERSHIP RPC' )
319
317
rpc .metric ('migrateTabletCount' , 'number of invocations of MIGRATE_TABLET RPC' )
320
318
rpc .metric ('isReplicaNeededCount' , 'number of invocations of IS_REPLICA_NEEDED_RPC' )
319
+ rpc .metric ('splitTabletCount' , 'number of invocations of SPLIT_TABLET' )
320
+ rpc .metric ('getServerStatisticsCount' , 'number of invocations of GET_SERVER_STATISTICS' )
321
+ rpc .metric ('setRuntimeOptionCount' , 'number of invocations of SET_RUNTIME_OPTION' )
321
322
rpc .metric ('illegalRpcCount' , 'number of invocations of RPCs with illegal opcodes' )
322
323
323
324
rpc .metric ('rpc0Ticks' , 'time spent executing RPC 0 (undefined)' )
@@ -339,8 +340,6 @@ def dump_metric_info_code(self, out, path, counter):
339
340
rpc .metric ('enlistServerTicks' , 'time spent executing ENLIST_SERVER RPC' )
340
341
rpc .metric ('getServerListTicks' , 'time spent executing GET_SERVER_LIST RPC' )
341
342
rpc .metric ('getTabletMapTicks' , 'time spent executing GET_TABLET_MAP RPC' )
342
- rpc .metric ('getServerStatisticsTicks' , 'time spent executing GET_SERVER_STATISTICS RPC' )
343
- rpc .metric ('setTabletsTicks' , 'time spent executing SET_TABLETS RPC' )
344
343
rpc .metric ('recoverTicks' , 'time spent executing RECOVER RPC' )
345
344
rpc .metric ('hintServerDownTicks' , 'time spent executing HINT_SERVER_DOWN RPC' )
346
345
rpc .metric ('recoveryMasterFinishedTicks' , 'time spent executing RECOVERY_MASTER_FINISHED RPC' )
@@ -364,14 +363,16 @@ def dump_metric_info_code(self, out, path, counter):
364
363
rpc .metric ('dropTabletOwnershipTicks' , 'number of invocations of DROP_TABLET_OWNERSHIP RPC' )
365
364
rpc .metric ('takeTabletOwnershipTicks' , 'number of invocations of TAKE_TABLET_OWNERSHIP RPC' )
366
365
rpc .metric ('backupAssignGroupTicks' , 'time spent executing BACKUP_ASSIGN_GROUP RPC' )
367
- rpc .metric ('incrementTicks' , 'time spent executing INCREMENT RPC' )
368
- rpc .metric ('splitTabletTicks' , 'time spent executing SPLIT_TABLET RPC' )
369
366
rpc .metric ('getHeadOfLogTicks' , 'time spent executing GET_HEAD_OF_LOG RPC' )
367
+ rpc .metric ('incrementTicks' , 'time spent executing INCREMENT RPC' )
370
368
rpc .metric ('prepForMigrationTicks' , 'time spent executing PREP_FOR_MIGRATION RPC' )
371
369
rpc .metric ('receiveMigrationDataTicks' , 'time spent executing RECEIVE_MIGRATION_DATA RPC' )
372
370
rpc .metric ('reassignTabletOwnershipTicks' , 'time spent executing REASSIGN_TABLET_OWNERSHIP RPC' )
373
371
rpc .metric ('migrateTabletTicks' , 'time spent executing MIGRATE_TABLET RPC' )
374
372
rpc .metric ('isReplicaNeededTicks' , 'time spent executing IS_REPLICA_NEEDED_RPC' )
373
+ rpc .metric ('splitTabletTicks' , 'time spent executing SPLIT_TABLET RPC' )
374
+ rpc .metric ('getServerStatisticsTicks' , 'time spent executing GET_SERVER_STATISTICS RPC' )
375
+ rpc .metric ('setRuntimeOptionTicks' , 'time spent executing SET_RUNTIME_OPTION RPC' )
375
376
rpc .metric ('illegalRpcTicks' , 'time spent executing RPCs with illegal opcodes' )
376
377
377
378
transmit = Group ('Transmit' , 'metrics related to transmitting messages' )
0 commit comments