Browse Source

TT#76368 remove some graphite functions from global namespace

Change-Id: Ic24778e9d04e015012e9d7cc873203d0dfbacaa6
changes/97/38497/2
Richard Fuchs 6 years ago
parent
commit
10ab85b3e5
2 changed files with 3 additions and 6 deletions
  1. +3
    -3
      daemon/graphite.c
  2. +0
    -3
      include/graphite.h

+ 3
- 3
daemon/graphite.c View File

@ -71,7 +71,7 @@ static struct request_time timeval_clear_request_time(struct request_time *reque
return ret;
}
int connect_to_graphite_server(const endpoint_t *graphite_ep) {
static int connect_to_graphite_server(const endpoint_t *graphite_ep) {
int rc;
if (!graphite_ep) {
@ -97,7 +97,7 @@ int connect_to_graphite_server(const endpoint_t *graphite_ep) {
return 0;
}
int send_graphite_data(struct totalstats *sent_data) {
static int send_graphite_data(struct totalstats *sent_data) {
if (graphite_sock.fd < 0) {
ilog(LOG_ERROR,"Graphite socket is not connected.");
@ -253,7 +253,7 @@ static inline void copy_with_lock(struct totalstats *ts_dst, struct totalstats *
mutex_unlock(ts_lock);
}
void graphite_loop_run(endpoint_t *graphite_ep, int seconds) {
static void graphite_loop_run(endpoint_t *graphite_ep, int seconds) {
int rc=0;
struct pollfd wfds[1];


+ 0
- 3
include/graphite.h View File

@ -18,9 +18,6 @@ enum connection_state {
extern struct timeval rtpe_latest_graphite_interval_start;
int connect_to_graphite_server(const endpoint_t *ep);
int send_graphite_data(struct totalstats *sent_data);
void graphite_loop_run(endpoint_t *graphite_ep, int seconds);
void set_prefix(char* prefix);
void graphite_loop(void *d);
void set_latest_graphite_interval_start(struct timeval *tv);


Loading…
Cancel
Save