log_slow_verbosity help text missing "minimal", "standard", "full" options

Bug #1088529 reported by Laurynas Biveinis
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Percona Server moved to https://jira.percona.com/projects/PS
Status tracked in 5.7
5.1
Won't Fix
Low
Unassigned
5.5
Triaged
Low
Unassigned
5.6
Triaged
Low
Unassigned
5.7
Triaged
Low
Unassigned

Bug Description

5.5:

const char* log_slow_verbosity_name[] = {
  "microtime", "query_plan", "innodb",
  "profiling", "profiling_use_getrusage",
  "minimal", "standard", "full", 0
};

static Sys_var_set Sys_log_slow_verbosity(
        "log_slow_verbosity",
        "Choose how verbose the messages to your slow log will be. "
        "Multiple flags allowed in a comma-separated string. [microtime, query_plan, innodb, profiling, profiling_use_getrusage]",
        SESSION_VAR(log_slow_verbosity), CMD_LINE(REQUIRED_ARG),
        log_slow_verbosity_name, DEFAULT(SLOG_V_MICROTIME),
        NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),
        ON_UPDATE(update_log_slow_verbosity_helper));

Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

5.1:

static const struct msl_opts slog_verb[]=
{
  /* Basic flags */

  { SLOG_V_MICROTIME, "microtime" },
  { SLOG_V_QUERY_PLAN, "query_plan" },
  { SLOG_V_INNODB, "innodb" },

  /* End of baisc flags */

  { 0, "" },

  /* Complex flags */

  { SLOG_V_MICROTIME, "minimal" },
  { SLOG_V_MICROTIME|SLOG_V_QUERY_PLAN, "standard" },
  { SLOG_V_MICROTIME|SLOG_V_QUERY_PLAN|SLOG_V_INNODB, "full" },

  /* End of complex flags */

  { SLOG_V_INVALID, (char *)0 }
};

 {"log_slow_verbosity", OPT_LOG_SLOW_VERBOSITY,
    "Choose how verbose the messages to your slow log will be. Multiple flags allowed in a comma-separated string. [microtime, query_plan, innodb]",

tags: added: slow-extended
tags: added: low-hanging-fruit
Revision history for this message
Shahriyar Rzayev (rzayev-sehriyar) wrote :

Percona now uses JIRA for bug reports so this bug report is migrated to: https://jira.percona.com/browse/PS-1955

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.