1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Intel Corporation
*/
#include <rte_log.h>
#include <rte_tailq.h>
#ifndef _RTE_TELEMETRY_INTERNAL_H_
#define _RTE_TELEMETRY_INTERNAL_H_
/* Logging Macros */
extern int telemetry_log_level;
#define TELEMETRY_LOG(level, fmt, args...) \
rte_log(RTE_LOG_ ##level, telemetry_log_level, "%s(): "fmt "\n", \
__func__, ##args)
#define TELEMETRY_LOG_ERR(fmt, args...) \
TELEMETRY_LOG(ERR, fmt, ## args)
#define TELEMETRY_LOG_WARN(fmt, args...) \
TELEMETRY_LOG(WARNING, fmt, ## args)
#define TELEMETRY_LOG_INFO(fmt, args...) \
TELEMETRY_LOG(INFO, fmt, ## args)
typedef struct telemetry_client {
char *file_path;
int fd;
TAILQ_ENTRY(telemetry_client) client_list;
} telemetry_client;
typedef struct telemetry_impl {
int accept_fd;
int server_fd;
pthread_t thread_id;
int thread_status;
uint32_t socket_id;
int reg_index;
int metrics_register_done;
TAILQ_HEAD(, telemetry_client) client_list_head;
struct telemetry_client *request_client;
int register_fail_count;
} telemetry_impl;
enum rte_telemetry_parser_actions {
ACTION_GET = 0,
ACTION_DELETE = 2
};
int32_t
rte_telemetry_parse_client_message(struct telemetry_impl *telemetry, char *buf);
int32_t
rte_telemetry_send_error_response(struct telemetry_impl *telemetry,
int error_type);
int32_t
rte_telemetry_register_client(struct telemetry_impl *telemetry,
const char *client_path);
int32_t
rte_telemetry_unregister_client(struct telemetry_impl *telemetry,
const char *client_path);
/**
* This is a wrapper for the ethdev api rte_eth_find_next().
* If rte_eth_find_next() returns the same port id that we passed it,
* then we know that that port is active.
*/
int32_t
rte_telemetry_is_port_active(int port_id);
int32_t
rte_telemetry_send_ports_stats_values(uint32_t *metric_ids, int num_metric_ids,
uint32_t *port_ids, int num_port_ids, struct telemetry_impl *telemetry);
int32_t
rte_telemetry_socket_messaging_testing(int index, int socket);
#endif
|