blob: f78a864624a4eb58f739c31d91bb078fd7f4f307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*-------------------------------------------------------------------------
*
* monitor.h
*
* Monitoring module of Postgres-XC configuration and operation tool.
*
*
* Copyright (c) 2013 Postgres-XC Development Group
*
*-------------------------------------------------------------------------
*/
#ifndef MONITOR_H
#define MONITOR_H
extern void do_monitor_command(char *line);
extern int do_gtm_ping(char *host, int port);
#endif /* MONITOR_H */
|