forked from postgrespro/pg_wait_sampling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_wait_sampling.h
89 lines (76 loc) · 1.89 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
81
82
83
84
85
86
87
88
89
/*
* 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>
/* Check PostgreSQL version */
#if PG_VERSION_NUM < 90600
#error "You are trying to build pg_wait_sampling with PostgreSQL version lower than 9.6. Please, check you environment."
#endif
#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;
bool profileQueries;
} CollectorShmqHeader;
/* pg_wait_sampling.c */
extern void check_shmem(void);
extern CollectorShmqHeader *collector_hdr;
extern shm_mq *collector_mq;
extern uint64 *proc_queryids;
extern void read_current_wait(PGPROC *proc, HistoryItem *item);
extern void init_lock_tag(LOCKTAG *tag, uint32 lock);
/* collector.c */
extern void register_wait_collector(void);
extern void alloc_history(History *, int);
extern void collector_main(Datum main_arg);
extern void shm_mq_detach_compat(shm_mq_handle *mqh, shm_mq *mq);
extern TupleDesc CreateTemplateTupleDescCompat(int nattrs, bool hasoid);
#endif