46
52
memcached_server_st *server,
50
55
struct server_function_context
52
StatsTableTool::Generator* generator;
53
server_function_context(StatsTableTool::Generator *generator_arg)
54
: generator(generator_arg)
58
plugin::InfoSchemaTable *schema_table;
59
server_function_context(Table *table_arg,
60
plugin::InfoSchemaTable *schema_table_arg)
61
: table(table_arg), schema_table(schema_table_arg)
60
memcached_return server_function(const memcached_st *memc,
66
memcached_return server_function(const memcached_st *const_memc,
61
67
memcached_server_st *server,
64
70
server_function_context *ctx= static_cast<server_function_context *>(context);
71
const CHARSET_INFO * const scs= system_charset_info;
72
memcached_st memc_stack;
75
memc= memcached_clone(&memc_stack, const_memc);
79
my_printf_error(ER_UNKNOWN_ERROR, _("Unable to allocate memory for memcached_clone()."), MYF(0));
80
return MEMCACHED_FAILURE;
66
83
char *server_name= memcached_server_name(memc, *server);
67
84
in_port_t server_port= memcached_server_port(memc, *server);
69
86
memcached_stat_st stats;
70
87
memcached_return ret= memcached_stat_servername(&stats, NULL,
71
88
server_name, server_port);
73
89
if (ret != MEMCACHED_SUCCESS)
75
91
my_printf_error(ER_UNKNOWN_ERROR, _("Unable get stats from memcached server %s. Got error from memcached_stat_servername()."), MYF(0), server_name);
79
char **list= memcached_stat_get_keys((memcached_st *)memc, &stats, &ret);
96
char **list= memcached_stat_get_keys(memc, &stats, &ret);
82
ctx->generator->push(server_name);
83
ctx->generator->push(static_cast<uint64_t>(server_port));
99
ctx->table->setWriteSet(0);
100
ctx->table->setWriteSet(1);
102
ctx->table->field[0]->store(server_name, strlen(server_name), scs);
103
ctx->table->field[1]->store(server_port);
85
106
for (ptr= list; *ptr; ptr++)
87
char *value= memcached_stat_get_value((memcached_st *)memc, &stats, *ptr, &ret);
88
ctx->generator->push(value);
108
char *value= memcached_stat_get_value(memc, &stats, *ptr, &ret);
110
ctx->table->setWriteSet(col);
111
ctx->table->field[col]->store(value,
118
/* store the actual record now */
119
ctx->schema_table->addRow(ctx->table->record[0], ctx->table->s->reclength);
120
memcached_free(memc);
93
122
return MEMCACHED_SUCCESS;
97
StatsTableTool::StatsTableTool() :
98
plugin::TableFunction("DATA_DICTIONARY", "MEMCACHED_STATS")
101
add_field("PORT_NUMBER", plugin::TableFunction::NUMBER);
102
add_field("PROCESS_ID", plugin::TableFunction::NUMBER);
103
add_field("UPTIME", plugin::TableFunction::NUMBER);
104
add_field("TIME", plugin::TableFunction::NUMBER);
105
add_field("VERSION");
106
add_field("POINTER_SIZE", plugin::TableFunction::NUMBER);
107
add_field("RUSAGE_USER", plugin::TableFunction::NUMBER);
108
add_field("RUSAGE_SYSTEM", plugin::TableFunction::NUMBER);
109
add_field("CURRENT_ITEMS", plugin::TableFunction::NUMBER);
110
add_field("TOTAL_ITEMS", plugin::TableFunction::NUMBER);
111
add_field("BYTES", plugin::TableFunction::NUMBER);
112
add_field("CURRENT_CONNECTIONS", plugin::TableFunction::NUMBER);
113
add_field("TOTAL_CONNECTIONS", plugin::TableFunction::NUMBER);
114
add_field("CONNECTION_STRUCTURES", plugin::TableFunction::NUMBER);
115
add_field("GETS", plugin::TableFunction::NUMBER);
116
add_field("SETS", plugin::TableFunction::NUMBER);
117
add_field("HITS", plugin::TableFunction::NUMBER);
118
add_field("MISSES", plugin::TableFunction::NUMBER);
119
add_field("EVICTIONS", plugin::TableFunction::NUMBER);
120
add_field("BYTES_READ", plugin::TableFunction::NUMBER);
121
add_field("BYTES_WRITTEN", plugin::TableFunction::NUMBER);
122
add_field("LIMIT_MAXBYTES", plugin::TableFunction::NUMBER);
123
add_field("THREADS", plugin::TableFunction::NUMBER);
127
StatsTableTool::Generator::Generator(Field **arg) :
128
plugin::TableFunction::Generator(arg)
130
/* This will be set to the real number if we initialize properly below */
135
/* set to NULL if we are not able to init we dont want to call delete on this */
125
int MemcachedStatsISMethods::fillTable(Session *,
127
plugin::InfoSchemaTable *schema_table)
138
129
SysvarHolder &sysvar_holder= SysvarHolder::singleton();
139
130
const string servers_string= sysvar_holder.getServersString();
132
table->restoreRecordAsDefault();
141
133
if (servers_string.empty())
143
135
my_printf_error(ER_UNKNOWN_ERROR, _("No value in MEMCACHED_STATS_SERVERS variable."), MYF(0));
147
memc= memcached_create(NULL);
140
memcached_st *memc= memcached_create(NULL);
148
141
if (memc == NULL)
150
143
my_printf_error(ER_UNKNOWN_ERROR, _("Unable to create memcached struct. Got error from memcached_create()."), MYF(0));
154
147
memcached_server_st *tmp_serv=
156
149
if (tmp_serv == NULL)
158
151
my_printf_error(ER_UNKNOWN_ERROR, _("Unable to create memcached server list. Got error from memcached_servers_parse(%s)."), MYF(0), servers_string.c_str());
152
memcached_free(memc);
162
156
memcached_server_push(memc, tmp_serv);
163
157
memcached_server_list_free(tmp_serv);
165
number_of_hosts= memc->number_of_hosts;
169
StatsTableTool::Generator::~Generator()
173
memcached_free(memc);
178
bool StatsTableTool::Generator::populate()
180
if (host_number == number_of_hosts)
185
server_function_context context(this);
187
159
memcached_server_fn callbacks[1];
188
161
callbacks[0]= server_function;
190
unsigned int iferror;
191
iferror= (*callbacks[0])(memc, &memc->servers[host_number], (void *)&context);
162
server_function_context context(table, schema_table);
164
memcached_server_cursor(memc, callbacks, &context, 1);
166
memcached_free(memc);
171
bool createMemcachedStatsColumns(vector<const plugin::ColumnInfo *> &cols)
174
* Create each column for the memcached stats table.
176
const plugin::ColumnInfo *name_col= new(std::nothrow) plugin::ColumnInfo("NAME",
178
DRIZZLE_TYPE_VARCHAR,
187
const plugin::ColumnInfo *port= new(std::nothrow) plugin::ColumnInfo("PORT_NUMBER",
189
DRIZZLE_TYPE_LONGLONG,
198
const plugin::ColumnInfo *pid= new(std::nothrow) plugin::ColumnInfo("PROCESS_ID",
200
DRIZZLE_TYPE_LONGLONG,
209
const plugin::ColumnInfo *uptime= new(std::nothrow) plugin::ColumnInfo("UPTIME",
211
DRIZZLE_TYPE_LONGLONG,
220
const plugin::ColumnInfo *time= new(std::nothrow) plugin::ColumnInfo("TIME",
222
DRIZZLE_TYPE_LONGLONG,
231
const plugin::ColumnInfo *version= new(std::nothrow) plugin::ColumnInfo("VERSION",
233
DRIZZLE_TYPE_VARCHAR,
242
const plugin::ColumnInfo *ptr_size= new(std::nothrow) plugin::ColumnInfo("POINTER_SIZE",
244
DRIZZLE_TYPE_LONGLONG,
253
const plugin::ColumnInfo *r_user= new(std::nothrow) plugin::ColumnInfo("RUSAGE_USER",
255
DRIZZLE_TYPE_LONGLONG,
264
const plugin::ColumnInfo *r_sys= new(std::nothrow) plugin::ColumnInfo("RUSAGE_SYSTEM",
266
DRIZZLE_TYPE_LONGLONG,
274
const plugin::ColumnInfo *curr_items= new(std::nothrow) plugin::ColumnInfo("CURRENT_ITEMS",
276
DRIZZLE_TYPE_LONGLONG,
285
const plugin::ColumnInfo *total_items= new(std::nothrow) plugin::ColumnInfo("TOTAL_ITEMS",
287
DRIZZLE_TYPE_LONGLONG,
296
const plugin::ColumnInfo *bytes= new(std::nothrow) plugin::ColumnInfo("BYTES",
298
DRIZZLE_TYPE_LONGLONG,
307
const plugin::ColumnInfo *curr_cons= new(std::nothrow) plugin::ColumnInfo("CURRENT_CONNECTIONS",
309
DRIZZLE_TYPE_LONGLONG,
312
"Current Connections");
318
const plugin::ColumnInfo *total_cons= new(std::nothrow) plugin::ColumnInfo("TOTAL_CONNECTIONS",
320
DRIZZLE_TYPE_LONGLONG,
323
"Total Connections");
329
const plugin::ColumnInfo *con_structs= new(std::nothrow) plugin::ColumnInfo("CONNECTION_STRUCTURES",
331
DRIZZLE_TYPE_LONGLONG,
334
"Connection Structures");
340
const plugin::ColumnInfo *cmd_gets= new(std::nothrow) plugin::ColumnInfo("GETS",
342
DRIZZLE_TYPE_LONGLONG,
351
const plugin::ColumnInfo *cmd_sets= new(std::nothrow) plugin::ColumnInfo("SETS",
353
DRIZZLE_TYPE_LONGLONG,
362
const plugin::ColumnInfo *hits= new(std::nothrow) plugin::ColumnInfo("HITS",
364
DRIZZLE_TYPE_LONGLONG,
373
const plugin::ColumnInfo *misses= new(std::nothrow) plugin::ColumnInfo("MISSES",
375
DRIZZLE_TYPE_LONGLONG,
384
const plugin::ColumnInfo *evicts= new(std::nothrow) plugin::ColumnInfo("EVICTIONS",
386
DRIZZLE_TYPE_LONGLONG,
395
const plugin::ColumnInfo *bytes_read= new(std::nothrow) plugin::ColumnInfo("BYTES_READ",
397
DRIZZLE_TYPE_LONGLONG,
406
const plugin::ColumnInfo *bytes_written= new(std::nothrow) plugin::ColumnInfo("BYTES_WRITTEN",
408
DRIZZLE_TYPE_LONGLONG,
417
const plugin::ColumnInfo *lim_max_bytes= new(std::nothrow) plugin::ColumnInfo("LIMIT_MAXBYTES",
419
DRIZZLE_TYPE_LONGLONG,
428
const plugin::ColumnInfo *threads= new(std::nothrow) plugin::ColumnInfo("THREADS",
430
DRIZZLE_TYPE_LONGLONG,
439
cols.push_back(name_col);
440
cols.push_back(port);
442
cols.push_back(uptime);
443
cols.push_back(time);
444
cols.push_back(version);
445
cols.push_back(ptr_size);
446
cols.push_back(r_user);
447
cols.push_back(r_sys);
448
cols.push_back(curr_items);
449
cols.push_back(total_items);
450
cols.push_back(bytes);
451
cols.push_back(curr_cons);
452
cols.push_back(total_cons);
453
cols.push_back(con_structs);
454
cols.push_back(cmd_gets);
455
cols.push_back(cmd_sets);
456
cols.push_back(hits);
457
cols.push_back(misses);
458
cols.push_back(evicts);
459
cols.push_back(bytes_read);
460
cols.push_back(bytes_written);
461
cols.push_back(lim_max_bytes);
462
cols.push_back(threads);
467
class DeleteMemcachedCols
471
inline void operator()(const T *ptr) const
477
void clearMemcachedColumns(vector<const plugin::ColumnInfo *> &cols)
479
for_each(cols.begin(), cols.end(), DeleteMemcachedCols());