X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fconsumer.h;h=ddc94d7148e5c3cc91be34f98b0a924374862fba;hb=2b29c638278807c1536634ce49f0c9c053b3ab5f;hp=99990714ac61e80039a80e77ba04953d55c2a495;hpb=e6142f2e647e83238b1e399b1264e8adb05409f9;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/consumer.h b/src/bin/lttng-sessiond/consumer.h index 99990714a..ddc94d714 100644 --- a/src/bin/lttng-sessiond/consumer.h +++ b/src/bin/lttng-sessiond/consumer.h @@ -140,6 +140,9 @@ struct consumer_net { /* Data path for network streaming. */ struct lttng_uri data; + + /* / */ + char base_dir[PATH_MAX]; }; /* @@ -163,7 +166,8 @@ struct consumer_output { uint32_t relay_minor_version; /* - * Subdirectory path name used for both local and network consumer. + * Subdirectory path name used for both local and network + * consumer (/kernel or /ust). */ char subdir[PATH_MAX]; @@ -178,9 +182,15 @@ struct consumer_output { unsigned int snapshot:1; union { - char trace_path[PATH_MAX]; + char session_root_path[PATH_MAX]; struct consumer_net net; } dst; + + /* + * Sub-directory below the session_root_path where the next chunk of + * trace will be stored (\0 before the first session rotation). + */ + char chunk_path[PATH_MAX]; }; struct consumer_socket *consumer_find_socket(int key,