Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Metrics.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 
14 #include <Ice/BuiltinSequences.ice>
15 
23 ["objc:prefix:ICEMX"]
24 module IceMX
25 {
26 
32 dictionary<string, int> StringIntDict;
33 
40 class Metrics
41 {
47  string id;
48 
54  long total = 0;
55 
61  int current = 0;
62 
69  long totalLifetime = 0;
70 
76  int failures = 0;
77 };
78 
86 {
93  string id;
94 
101 };
102 
108 sequence<MetricsFailures> MetricsFailuresSeq;
109 
118 sequence<Metrics> MetricsMap;
119 
126 dictionary<string, MetricsMap> MetricsView;
127 
134 {
135 };
136 
145 ["format:sliced"]
146 interface MetricsAdmin
147 {
157  Ice::StringSeq getMetricsViewNames(out Ice::StringSeq disabledViews);
158 
169  void enableMetricsView(string name)
170  throws UnknownMetricsView;
171 
182  void disableMetricsView(string name)
183  throws UnknownMetricsView;
184 
204  MetricsView getMetricsView(string view, out long timestamp)
205  throws UnknownMetricsView;
206 
221  MetricsFailuresSeq getMapMetricsFailures(string view, string map)
222  throws UnknownMetricsView;
223 
240  MetricsFailures getMetricsFailures(string view, string map, string id)
241  throws UnknownMetricsView;
242 };
243 
250 class ThreadMetrics extends Metrics
251 {
258  int inUseForIO = 0;
259 
266  int inUseForUser = 0;
267 
276  int inUseForOther = 0;
277 };
278 
285 {
291  int userException = 0;
292 
299  long size = 0;
300 
307  long replySize = 0;
308 };
309 
320 {
327  long size = 0;
328 
335  long replySize = 0;
336 };
337 
345 {
346 };
347 
356 {
357 };
358 
366 {
372  int retry = 0;
373 
379  int userException = 0;
380 
389 
398 };
399 
407 {
413  long receivedBytes = 0;
414 
420  long sentBytes = 0;
421 };
422 
423 };
dictionary< string, MetricsMap > MetricsView
A metrics view is a dictionary of metrics map.
Definition: Metrics.ice:126
The base class for metrics.
Definition: Metrics.ice:40
sequence< Metrics > MetricsMap
A metrics map is a sequence of metrics.
Definition: Metrics.ice:118
A structure to keep track of failures associated with a given metrics.
Definition: Metrics.ice:85
Raised if a metrics view cannot be found.
Definition: Metrics.ice:133
dictionary< string, int > StringIntDict
A dictionnary of strings to integers.
Definition: Metrics.ice:32
Provides information on servant dispatch.
Definition: Metrics.ice:284
MetricsMap collocated
The collocated invocation metrics map.
Definition: Metrics.ice:397
The Ice Management eXtension facility.
Definition: Metrics.ice:18
string id
The identifier of the metrics object associated to the failures.
Definition: Metrics.ice:93
Provides information on invocations that are collocated.
Definition: Metrics.ice:344
Provides information on child invocations.
Definition: Metrics.ice:319
Provides information on the data sent and received over Ice connections.
Definition: Metrics.ice:406
Provides information on the number of threads currently in use and their activity.
Definition: Metrics.ice:250
string id
The metrics identifier.
Definition: Metrics.ice:47
StringIntDict failures
The failures observed for this metrics.
Definition: Metrics.ice:100
Provides information on invocations that are specifically sent over Ice connections.
Definition: Metrics.ice:355
sequence< MetricsFailures > MetricsFailuresSeq
A sequence of MetricsFailures.
Definition: Metrics.ice:108
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40
MetricsMap remotes
The remote invocation metrics map.
Definition: Metrics.ice:388
The metrics administrative facet interface.
Definition: Metrics.ice:146
Provide measurements for proxy invocations.
Definition: Metrics.ice:365