-
Notifications
You must be signed in to change notification settings - Fork 35
/
pg_wait_sampling.h
80 lines (69 loc) · 1.54 KB
/
pg_wait_sampling.h
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
/*
* pg_wait_sampling.h
* Headers for pg_wait_sampling extension.
*
* Copyright (c) 2015-2016, Postgres Professional
*
* IDENTIFICATION
* contrib/pg_wait_sampling/pg_wait_sampling.h
*/
#ifndef __PG_WAIT_SAMPLING_H__
#define __PG_WAIT_SAMPLING_H__
#include "postgres.h"
#include "storage/proc.h"
#include "storage/shm_mq.h"
#include "utils/timestamp.h"
#define PG_WAIT_SAMPLING_MAGIC 0xCA94B107
#define COLLECTOR_QUEUE_SIZE (16 * 1024)
#define HISTORY_TIME_MULTIPLIER 10
#define PGWS_QUEUE_LOCK 0
#define PGWS_COLLECTOR_LOCK 1
typedef struct
{
uint32 pid;
uint32 wait_event_info;
uint64 queryId;
uint64 count;
} ProfileItem;
typedef struct
{
uint32 pid;
uint32 wait_event_info;
uint64 queryId;
TimestampTz ts;
} HistoryItem;
typedef struct
{
bool wraparound;
Size index;
Size count;
HistoryItem *items;
} History;
typedef enum
{
NO_REQUEST,
HISTORY_REQUEST,
PROFILE_REQUEST,
PROFILE_RESET
} SHMRequest;
typedef struct
{
Latch *latch;
SHMRequest request;
int historySize;
int historyPeriod;
int profilePeriod;
bool profilePid;
int profileQueries;
bool sampleCpu;
} CollectorShmqHeader;
/* pg_wait_sampling.c */
extern CollectorShmqHeader *pgws_collector_hdr;
extern shm_mq *pgws_collector_mq;
extern uint64 *pgws_proc_queryids;
extern void pgws_init_lock_tag(LOCKTAG *tag, uint32 lock);
extern bool pgws_should_sample_proc(PGPROC *proc);
/* collector.c */
extern void pgws_register_wait_collector(void);
extern PGDLLEXPORT void pgws_collector_main(Datum main_arg);
#endif