1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoIndexLog {
    #[prost(message, optional, tag = "1")]
    pub key: ::core::option::Option<ProtoLogVariant>,
    #[prost(message, optional, tag = "2")]
    pub value: ::core::option::Option<::mz_repr::global_id::ProtoGlobalId>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoSinkLog {
    #[prost(message, optional, tag = "1")]
    pub key: ::core::option::Option<ProtoLogVariant>,
    #[prost(message, optional, tag = "2")]
    pub value_id: ::core::option::Option<::mz_repr::global_id::ProtoGlobalId>,
    #[prost(message, optional, tag = "3")]
    pub value_meta: ::core::option::Option<
        ::mz_storage_client::controller::ProtoCollectionMetadata,
    >,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoTimelyLog {
    #[prost(oneof = "proto_timely_log::Kind", tags = "1, 2, 3, 4, 5, 6, 7, 8, 9")]
    pub kind: ::core::option::Option<proto_timely_log::Kind>,
}
/// Nested message and enum types in `ProtoTimelyLog`.
pub mod proto_timely_log {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        Operates(()),
        #[prost(message, tag = "2")]
        Channels(()),
        #[prost(message, tag = "3")]
        Elapsed(()),
        #[prost(message, tag = "4")]
        Histogram(()),
        #[prost(message, tag = "5")]
        Addresses(()),
        #[prost(message, tag = "6")]
        Parks(()),
        #[prost(message, tag = "7")]
        MessagesSent(()),
        #[prost(message, tag = "8")]
        MessagesReceived(()),
        #[prost(message, tag = "9")]
        Reachability(()),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoDifferentialLog {
    #[prost(oneof = "proto_differential_log::Kind", tags = "1, 2, 3")]
    pub kind: ::core::option::Option<proto_differential_log::Kind>,
}
/// Nested message and enum types in `ProtoDifferentialLog`.
pub mod proto_differential_log {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        ArrangementBatches(()),
        #[prost(message, tag = "2")]
        ArrangementRecords(()),
        #[prost(message, tag = "3")]
        Sharing(()),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoComputeLog {
    #[prost(oneof = "proto_compute_log::Kind", tags = "1, 2, 3, 4, 5, 6, 7")]
    pub kind: ::core::option::Option<proto_compute_log::Kind>,
}
/// Nested message and enum types in `ProtoComputeLog`.
pub mod proto_compute_log {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        DataflowCurrent(()),
        #[prost(message, tag = "2")]
        DataflowDependency(()),
        #[prost(message, tag = "3")]
        FrontierCurrent(()),
        #[prost(message, tag = "4")]
        PeekCurrent(()),
        #[prost(message, tag = "5")]
        PeekDuration(()),
        #[prost(message, tag = "6")]
        FrontierDelay(()),
        #[prost(message, tag = "7")]
        SourceFrontierCurrent(()),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoLogVariant {
    #[prost(oneof = "proto_log_variant::Kind", tags = "1, 2, 3")]
    pub kind: ::core::option::Option<proto_log_variant::Kind>,
}
/// Nested message and enum types in `ProtoLogVariant`.
pub mod proto_log_variant {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(message, tag = "1")]
        Timely(super::ProtoTimelyLog),
        #[prost(message, tag = "2")]
        Differential(super::ProtoDifferentialLog),
        #[prost(message, tag = "3")]
        Compute(super::ProtoComputeLog),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoLoggingConfig {
    #[prost(message, optional, tag = "1")]
    pub interval: ::core::option::Option<::mz_proto::ProtoDuration>,
    #[prost(bool, tag = "2")]
    pub enable_logging: bool,
    #[prost(bool, tag = "3")]
    pub log_logging: bool,
    #[prost(message, repeated, tag = "4")]
    pub index_logs: ::prost::alloc::vec::Vec<ProtoIndexLog>,
    #[prost(message, repeated, tag = "5")]
    pub sink_logs: ::prost::alloc::vec::Vec<ProtoSinkLog>,
}