Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 1 | /* |
| 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 Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 20 | #include <stdint.h> |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 21 | #include <unistd.h> |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 22 | #include <vlib/counter_types.h> |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 23 | |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 24 | typedef enum |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 25 | { |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 26 | STAT_DIR_TYPE_ILLEGAL = 0, |
| 27 | STAT_DIR_TYPE_SCALAR_INDEX, |
| 28 | STAT_DIR_TYPE_COUNTER_VECTOR_SIMPLE, |
| 29 | STAT_DIR_TYPE_COUNTER_VECTOR_COMBINED, |
| 30 | STAT_DIR_TYPE_ERROR_INDEX, |
| 31 | } stat_directory_type_t; |
| 32 | |
| 33 | /* Default socket to exchange segment fd */ |
| 34 | #define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock" |
| 35 | |
| 36 | typedef struct stat_client_main_t stat_client_main_t; |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 37 | |
| 38 | typedef struct |
| 39 | { |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 40 | char *name; |
| 41 | stat_directory_type_t type; |
| 42 | union |
| 43 | { |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 44 | double scalar_value; |
| 45 | uint64_t error_value; |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 46 | counter_t **simple_counter_vec; |
| 47 | vlib_counter_t **combined_counter_vec; |
| 48 | }; |
| 49 | } stat_segment_data_t; |
| 50 | |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 51 | stat_client_main_t *stat_client_get (void); |
| 52 | void stat_client_free (stat_client_main_t * sm); |
Neale Ranns | 318d794 | 2018-12-03 01:53:32 -0800 | [diff] [blame] | 53 | int stat_segment_connect_r (const char *socket_name, stat_client_main_t * sm); |
| 54 | int stat_segment_connect (const char *socket_name); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 55 | void stat_segment_disconnect_r (stat_client_main_t * sm); |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 56 | void stat_segment_disconnect (void); |
Mohsin Kazmi | 90a9fdf | 2018-12-04 14:31:15 +0000 | [diff] [blame] | 57 | uint8_t **stat_segment_string_vector (uint8_t ** string_vector, |
| 58 | const char *string); |
Ole Troan | 7320210 | 2018-08-31 00:29:48 +0200 | [diff] [blame] | 59 | int stat_segment_vec_len (void *vec); |
Ole Troan | 8254018 | 2018-10-22 09:41:29 +0200 | [diff] [blame] | 60 | void stat_segment_vec_free (void *vec); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 61 | uint32_t *stat_segment_ls_r (uint8_t ** patterns, stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 62 | uint32_t *stat_segment_ls (uint8_t ** pattern); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 63 | stat_segment_data_t *stat_segment_dump_r (uint32_t * stats, |
| 64 | stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 65 | stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 66 | stat_segment_data_t *stat_segment_dump_entry_r (uint32_t index, |
| 67 | stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 68 | stat_segment_data_t *stat_segment_dump_entry (uint32_t index); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 69 | |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 70 | void stat_segment_data_free (stat_segment_data_t * res); |
| 71 | double stat_segment_heartbeat_r (stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 72 | double stat_segment_heartbeat (void); |
| 73 | |
| 74 | char *stat_segment_index_to_name (uint32_t index); |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 75 | |
| 76 | #endif /* included_stat_client_h */ |
| 77 | |
| 78 | /* |
| 79 | * fd.io coding-style-patch-verification: ON |
| 80 | * |
| 81 | * Local Variables: |
| 82 | * eval: (c-set-style "gnu") |
| 83 | * End: |
| 84 | */ |