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> |
| 21 | #include <vpp/stats/stat_segment.h> |
| 22 | #include <vlib/counter_types.h> |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 23 | |
| 24 | typedef struct |
| 25 | { |
| 26 | char *name; |
| 27 | stat_directory_type_t type; |
| 28 | union |
| 29 | { |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 30 | double scalar_value; |
| 31 | uint64_t error_value; |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 32 | counter_t **simple_counter_vec; |
| 33 | vlib_counter_t **combined_counter_vec; |
| 34 | }; |
| 35 | } stat_segment_data_t; |
| 36 | |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 37 | int stat_segment_connect (char *socket_name); |
| 38 | void stat_segment_disconnect (void); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 39 | uint8_t **stat_segment_string_vector (uint8_t ** string_vector, char *string); |
Ole Troan | 7320210 | 2018-08-31 00:29:48 +0200 | [diff] [blame] | 40 | int stat_segment_vec_len (void *vec); |
Ole Troan | 8254018 | 2018-10-22 09:41:29 +0200 | [diff] [blame^] | 41 | void stat_segment_vec_free (void *vec); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 42 | uint32_t *stat_segment_ls (uint8_t ** pattern); |
| 43 | stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec); |
| 44 | stat_segment_data_t *stat_segment_dump_entry (uint32_t index); |
| 45 | void stat_segment_data_free (stat_segment_data_t * res); |
| 46 | |
| 47 | double stat_segment_heartbeat (void); |
| 48 | |
| 49 | char *stat_segment_index_to_name (uint32_t index); |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 50 | |
| 51 | #endif /* included_stat_client_h */ |
| 52 | |
| 53 | /* |
| 54 | * fd.io coding-style-patch-verification: ON |
| 55 | * |
| 56 | * Local Variables: |
| 57 | * eval: (c-set-style "gnu") |
| 58 | * End: |
| 59 | */ |