~ps10gel/ubuntu/xenial/trafficserver/6.2.0

« back to all changes in this revision

Viewing changes to proxy/DynamicStats.h

  • Committer: Bazaar Package Importer
  • Author(s): Arno Toell
  • Date: 2011-01-13 11:49:18 UTC
  • Revision ID: james.westby@ubuntu.com-20110113114918-vu422h8dknrgkj15
Tags: upstream-2.1.5-unstable
ImportĀ upstreamĀ versionĀ 2.1.5-unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** @file
 
2
 
 
3
  A brief file description
 
4
 
 
5
  @section license License
 
6
 
 
7
  Licensed to the Apache Software Foundation (ASF) under one
 
8
  or more contributor license agreements.  See the NOTICE file
 
9
  distributed with this work for additional information
 
10
  regarding copyright ownership.  The ASF licenses this file
 
11
  to you under the Apache License, Version 2.0 (the
 
12
  "License"); you may not use this file except in compliance
 
13
  with the License.  You may obtain a copy of the License at
 
14
 
 
15
      http://www.apache.org/licenses/LICENSE-2.0
 
16
 
 
17
  Unless required by applicable law or agreed to in writing, software
 
18
  distributed under the License is distributed on an "AS IS" BASIS,
 
19
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
20
  See the License for the specific language governing permissions and
 
21
  limitations under the License.
 
22
 */
 
23
 
 
24
_HEADER
 
25
  //
 
26
  // Dynamic http stats
 
27
  //
 
28
  // this one's in the state machine currently
 
29
  //
 
30
    //
 
31
    // Dynamic Cluster Stats
 
32
    //
 
33
_D(cluster_connections_open_stat)
 
34
_D(cluster_connections_openned_stat)
 
35
_D(cluster_con_total_time_stat)
 
36
_D(cluster_ctrl_msgs_sent_stat)
 
37
_D(cluster_slow_ctrl_msgs_sent_stat)    // fast ctrl messages do not require a mallo
 
38
_D(cluster_ctrl_msgs_recvd_stat)
 
39
_D(cluster_slow_ctrl_msgs_recvd_stat)
 
40
_D(cluster_ctrl_msgs_send_time_stat)
 
41
_D(cluster_ctrl_msgs_recv_time_stat)
 
42
_D(cluster_read_bytes_stat)
 
43
_D(cluster_write_bytes_stat)
 
44
_D(cluster_op_delayed_for_lock_stat)    // a message to a machine was blocked by a locked connection
 
45
_D(cluster_connections_locked_stat)     // a connection could not use its slot (locked)
 
46
_D(cluster_connections_bumped_stat)     // a connection could not get a slot (scheduled too late)
 
47
_D(cluster_nodes_stat)
 
48
_D(cluster_net_backup_stat)
 
49
_D(cluster_machines_allocated_stat)
 
50
_D(cluster_machines_freed_stat)
 
51
_D(cluster_configuration_changes_stat)
 
52
_D(cluster_delayed_reads_stat)
 
53
_D(cluster_byte_bank_used_stat)
 
54
_D(cluster_alloc_data_news_stat)
 
55
_D(cluster_write_bb_mallocs_stat)
 
56
_D(cluster_partial_reads_stat)
 
57
_D(cluster_partial_writes_stat)
 
58
_D(cluster_cache_outstanding_stat)
 
59
_D(cluster_remote_op_timeouts_stat)
 
60
_D(cluster_remote_op_reply_timeouts_stat)
 
61
_D(cluster_chan_inuse_stat)
 
62
_D(cluster_open_delays_stat)
 
63
_D(cluster_open_delay_time_stat)
 
64
_D(cluster_cache_callbacks_stat)
 
65
_D(cluster_cache_callback_time_stat)
 
66
_D(cluster_cache_rmt_callbacks_stat)
 
67
_D(cluster_cache_rmt_callback_time_stat)
 
68
_D(cluster_cache_lkrmt_callbacks_stat)
 
69
_D(cluster_cache_lkrmt_callback_time_stat)
 
70
_D(cluster_thread_steal_expires_stat)
 
71
_D(cluster_local_connections_closed_stat)
 
72
_D(cluster_local_connection_time_stat)
 
73
_D(cluster_remote_connections_closed_stat)
 
74
_D(cluster_remote_connection_time_stat)
 
75
_D(cluster_rdmsg_assemble_time_stat)
 
76
_D(cluster_ping_time_stat)
 
77
_D(cluster_setdata_no_clustervc_stat)
 
78
_D(cluster_setdata_no_tunnel_stat)
 
79
_D(cluster_setdata_no_cachevc_stat)
 
80
_D(cluster_setdata_no_cluster_stat)
 
81
_D(cluster_vc_write_stall_stat)
 
82
_D(cluster_no_remote_space_stat)
 
83
_D(cluster_level1_bank_stat)
 
84
_D(cluster_multilevel_bank_stat)
 
85
_D(cluster_vc_cache_insert_lock_misses_stat)
 
86
_D(cluster_vc_cache_inserts_stat)
 
87
_D(cluster_vc_cache_lookup_lock_misses_stat)
 
88
_D(cluster_vc_cache_lookup_hits_stat)
 
89
_D(cluster_vc_cache_lookup_misses_stat)
 
90
_D(cluster_vc_cache_scans_stat)
 
91
_D(cluster_vc_cache_scan_lock_misses_stat)
 
92
_D(cluster_vc_cache_purges_stat)
 
93
_D(cluster_write_lock_misses_stat)
 
94
 
 
95
 
 
96
  //
 
97
  // Dynamic Load Shedding Stats
 
98
  //
 
99
_D(cpu_metric_load_percent_stat)
 
100
_D(cpu_metric_net_loops_per_second_stat)
 
101
_D(cpu_metric_fds_ready_per_loop_stat)
 
102
    //
 
103
    // Dynamic Scheduled Update Stats
 
104
    //
 
105
#ifdef TS_MICRO
 
106
    //
 
107
    // Prefetch Stuffer Stats
 
108
    //
 
109
_D(stuffer_total_promises)
 
110
_D(stuffer_total_objects)
 
111
_D(stuffer_total_bytes_received)
 
112
_D(stuffer_open_read_blocks)
 
113
_D(stuffer_ram_cache_hits)
 
114
_D(stuffer_url_lookup_misses)
 
115
_D(stuffer_total_objects_pushed)
 
116
#endif
 
117
_FOOTER