blob: 901ec325522a626fbdd103a2ad660f5da8dee418 [file] [log] [blame]
Ole Troan2fee1672018-08-23 13:00:53 +02001/*
2 * stat_client.h - Library for access to VPP statistics segment
3 *
4 * Copyright (c) 2018 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef included_stat_client_h
18#define included_stat_client_h
19
Ole Troand577e1f2019-04-29 13:38:52 +020020#define STAT_VERSION_MAJOR 1
Ole Troan233e4682019-05-16 15:01:34 +020021#define STAT_VERSION_MINOR 2
Ole Troand577e1f2019-04-29 13:38:52 +020022
Ole Troan58492a82018-09-04 13:19:12 +020023#include <stdint.h>
Ole Troan2152e1c2018-11-23 23:07:13 +010024#include <unistd.h>
Ole Troan58492a82018-09-04 13:19:12 +020025#include <vlib/counter_types.h>
Ole Troan2fee1672018-08-23 13:00:53 +020026
Ole Troan2152e1c2018-11-23 23:07:13 +010027typedef enum
Ole Troan2fee1672018-08-23 13:00:53 +020028{
Ole Troan2152e1c2018-11-23 23:07:13 +010029 STAT_DIR_TYPE_ILLEGAL = 0,
30 STAT_DIR_TYPE_SCALAR_INDEX,
31 STAT_DIR_TYPE_COUNTER_VECTOR_SIMPLE,
32 STAT_DIR_TYPE_COUNTER_VECTOR_COMBINED,
33 STAT_DIR_TYPE_ERROR_INDEX,
Ole Troan703908a2019-02-26 16:37:03 +010034 STAT_DIR_TYPE_NAME_VECTOR,
Ole Troan2152e1c2018-11-23 23:07:13 +010035} stat_directory_type_t;
36
37/* Default socket to exchange segment fd */
38#define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock"
39
40typedef struct stat_client_main_t stat_client_main_t;
Paul Vinciguerra56421092018-11-21 16:34:09 -080041
42typedef struct
43{
Ole Troan2fee1672018-08-23 13:00:53 +020044 char *name;
45 stat_directory_type_t type;
46 union
47 {
Ole Troan58492a82018-09-04 13:19:12 +020048 double scalar_value;
Ole Troan233e4682019-05-16 15:01:34 +020049 counter_t *error_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020050 counter_t **simple_counter_vec;
51 vlib_counter_t **combined_counter_vec;
Ole Troan703908a2019-02-26 16:37:03 +010052 uint8_t **name_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020053 };
54} stat_segment_data_t;
55
Paul Vinciguerra56421092018-11-21 16:34:09 -080056stat_client_main_t *stat_client_get (void);
57void stat_client_free (stat_client_main_t * sm);
Neale Ranns318d7942018-12-03 01:53:32 -080058int stat_segment_connect_r (const char *socket_name, stat_client_main_t * sm);
59int stat_segment_connect (const char *socket_name);
Paul Vinciguerra56421092018-11-21 16:34:09 -080060void stat_segment_disconnect_r (stat_client_main_t * sm);
Ole Troan2fee1672018-08-23 13:00:53 +020061void stat_segment_disconnect (void);
Mohsin Kazmi90a9fdf2018-12-04 14:31:15 +000062uint8_t **stat_segment_string_vector (uint8_t ** string_vector,
63 const char *string);
Ole Troan73202102018-08-31 00:29:48 +020064int stat_segment_vec_len (void *vec);
Ole Troan82540182018-10-22 09:41:29 +020065void stat_segment_vec_free (void *vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080066uint32_t *stat_segment_ls_r (uint8_t ** patterns, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020067uint32_t *stat_segment_ls (uint8_t ** pattern);
Paul Vinciguerra56421092018-11-21 16:34:09 -080068stat_segment_data_t *stat_segment_dump_r (uint32_t * stats,
69 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020070stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080071stat_segment_data_t *stat_segment_dump_entry_r (uint32_t index,
72 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020073stat_segment_data_t *stat_segment_dump_entry (uint32_t index);
Ole Troan58492a82018-09-04 13:19:12 +020074
Paul Vinciguerra56421092018-11-21 16:34:09 -080075void stat_segment_data_free (stat_segment_data_t * res);
76double stat_segment_heartbeat_r (stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020077double stat_segment_heartbeat (void);
78
Ole Troancbb8f582019-04-15 08:53:46 +020079char *stat_segment_index_to_name_r (uint32_t index, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020080char *stat_segment_index_to_name (uint32_t index);
Ole Troan2fee1672018-08-23 13:00:53 +020081
82#endif /* included_stat_client_h */
83
84/*
85 * fd.io coding-style-patch-verification: ON
86 *
87 * Local Variables:
88 * eval: (c-set-style "gnu")
89 * End:
90 */