X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Fdefaults.h;h=fb6a975ddabe8fb3e231fc49f5d8754855cfa775;hb=1624d5b7ba86633d36f3a5c86ea1df5d308c4360;hp=83159d7d7b5d83c2096fedc7b010f9c2c186aa5b;hpb=d0b96690836f4b876096f3dc14801f8e25281a77;p=lttng-tools.git diff --git a/src/common/defaults.h b/src/common/defaults.h index 83159d7d7..fb6a975dd 100644 --- a/src/common/defaults.h +++ b/src/common/defaults.h @@ -48,6 +48,10 @@ #define DEFAULT_KERNEL_TRACE_DIR "/kernel" #define DEFAULT_UST_TRACE_DIR "/ust" +/* Subpath for per PID or UID sessions. */ +#define DEFAULT_UST_TRACE_PID_PATH "/pid" +#define DEFAULT_UST_TRACE_UID_PATH "/uid/%d/%u-bit" + /* * Default session name for the lttng command line. This default value will * get the date and time appended (%Y%m%d-%H%M%S) to it. @@ -72,7 +76,6 @@ #define DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH DEFAULT_USTCONSUMERD32_PATH "/command" #define DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH DEFAULT_USTCONSUMERD32_PATH "/error" - /* Default lttng run directory */ #define DEFAULT_LTTNG_RUNDIR "/var/run/lttng" #define DEFAULT_LTTNG_HOME_RUNDIR "%s/.lttng" @@ -84,7 +87,6 @@ #define DEFAULT_GLOBAL_HEALTH_UNIX_SOCK DEFAULT_LTTNG_RUNDIR "/health.sock" #define DEFAULT_HOME_HEALTH_UNIX_SOCK DEFAULT_LTTNG_HOME_RUNDIR "/health.sock" -#ifdef HAVE_LIBLTTNG_UST_CTL #define DEFAULT_GLOBAL_APPS_UNIX_SOCK \ DEFAULT_LTTNG_RUNDIR "/" LTTNG_UST_SOCK_FILENAME #define DEFAULT_HOME_APPS_UNIX_SOCK \ @@ -94,11 +96,6 @@ #define DEFAULT_HOME_APPS_WAIT_SHM_PATH \ DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH "-%d" -#else -#define DEFAULT_GLOBAL_APPS_UNIX_SOCK -#define DEFAULT_HOME_APPS_UNIX_SOCK -#endif /* HAVE_LIBLTTNG_UST_CTL */ - /* * Value taken from the hard limit allowed by the kernel when using setrlimit * with RLIMIT_NOFILE on an Intel i7 CPU and Linux 3.0.3. @@ -121,11 +118,12 @@ /* DEFAULT_CHANNEL_SUBBUF_NUM must always be a power of 2 */ #define DEFAULT_CHANNEL_SUBBUF_NUM 4 #define DEFAULT_CHANNEL_SWITCH_TIMER 0 /* usec */ -#define DEFAULT_CHANNEL_READ_TIMER 200 /* usec */ +#define DEFAULT_CHANNEL_READ_TIMER 200000 /* usec */ #define DEFAULT_CHANNEL_OUTPUT LTTNG_EVENT_MMAP #define DEFAULT_METADATA_SUBBUF_SIZE 4096 #define DEFAULT_METADATA_SUBBUF_NUM 2 +#define DEFAULT_METADATA_CACHE_SIZE 4096 /* Kernel has different defaults */ @@ -138,6 +136,14 @@ #define DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM DEFAULT_CHANNEL_SUBBUF_NUM /* See lttng-kernel.h enum lttng_kernel_output for channel output */ #define DEFAULT_KERNEL_CHANNEL_OUTPUT LTTNG_EVENT_SPLICE +/* By default, unlimited tracefile size */ +#define DEFAULT_KERNEL_CHANNEL_TRACEFILE_SIZE 0 +/* By default, unlimited tracefile count */ +#define DEFAULT_KERNEL_CHANNEL_TRACEFILE_COUNT 0 + +#define DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER \ + DEFAULT_CHANNEL_SWITCH_TIMER +#define DEFAULT_KERNEL_CHANNEL_READ_TIMER 200000 /* usec */ /* User space defaults */ @@ -147,6 +153,14 @@ #define DEFAULT_UST_CHANNEL_SUBBUF_NUM DEFAULT_CHANNEL_SUBBUF_NUM /* See lttng-ust.h enum lttng_ust_output */ #define DEFAULT_UST_CHANNEL_OUTPUT LTTNG_EVENT_MMAP +/* By default, unlimited tracefile size */ +#define DEFAULT_UST_CHANNEL_TRACEFILE_SIZE 0 +/* By default, unlimited tracefile count */ +#define DEFAULT_UST_CHANNEL_TRACEFILE_COUNT 0 + +#define DEFAULT_UST_CHANNEL_SWITCH_TIMER \ + DEFAULT_CHANNEL_SWITCH_TIMER +#define DEFAULT_UST_CHANNEL_READ_TIMER 0 /* usec */ /* * Default timeout value for the sem_timedwait() call. Blocking forever is not @@ -172,6 +186,12 @@ */ #define DEFAULT_DATA_AVAILABILITY_WAIT_TIME 200000 /* usec */ +/* + * Wait period before retrying the lttng_consumer_flushed_cache when + * the consumer receives metadata. + */ +#define DEFAULT_METADATA_AVAILABILITY_WAIT_TIME 200000 /* usec */ + /* * Default receiving and sending timeout for an application socket. */