We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64b8a8 commit 6bf49c0Copy full SHA for 6bf49c0
src/prism/logstream/mod.rs
@@ -199,6 +199,8 @@ async fn get_stream_info_helper(stream_name: &str) -> Result<StreamInfo, StreamE
199
/// and query results.
200
#[derive(Serialize)]
201
pub struct PrismDatasetResponse {
202
+ /// Name of the stream
203
+ stream: String,
204
/// Basic information about the stream
205
info: StreamInfo,
206
/// Statistics for the queried timeframe
@@ -296,6 +298,7 @@ impl PrismDatasetRequest {
296
298
let user_agents = self.get_distinct_entries(stream, "p_user_agent").await.ok();
297
299
300
responses.push(PrismDatasetResponse {
301
+ stream: stream.clone(),
302
info,
303
stats,
304
retention,
0 commit comments