otlp2pipeline 0.4.0

OTLP ingestion worker for Cloudflare Pipelines and AWS
Documentation
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
pub mod auth;
pub mod commands;
pub mod config;
pub mod url;

use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(name = "otlp2pipeline")]
#[command(about = "Manage otlp2pipeline infrastructure on Cloudflare")]
#[command(version)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Initialize project config (.otlp2pipeline.toml)
    Init(InitArgs),

    // Top-level commands (auto-route via config)
    /// Create pipeline environment (reads provider from .otlp2pipeline.toml)
    Create(CreateArgs),
    /// Destroy pipeline environment (reads provider from .otlp2pipeline.toml)
    Destroy(DestroyArgs),
    /// Show environment status (reads provider from .otlp2pipeline.toml)
    Status(StatusArgs),
    /// Dry-run: show what would be created (reads provider from .otlp2pipeline.toml)
    Plan(PlanArgs),
    /// Start a DuckDB query session (reads provider from .otlp2pipeline.toml)
    Query(QueryArgs),

    // Provider-specific subcommands (explicit)
    /// Cloudflare infrastructure commands (explicit provider)
    #[command(alias = "cf")]
    Cloudflare(CloudflareArgs),

    /// AWS infrastructure commands (explicit provider)
    Aws(AwsArgs),

    /// Azure infrastructure commands (explicit provider)
    Azure(AzureArgs),

    // Provider-agnostic commands
    /// List known services
    Services(ServicesArgs),
    /// Stream live telemetry
    Tail(TailArgs),
    /// Generate OpenTelemetry Collector config
    Connect(ConnectArgs),
}

#[derive(clap::Args)]
pub struct InitArgs {
    /// Cloud provider (cloudflare, cf, aws, azure)
    #[arg(long, short)]
    pub provider: String,

    /// Environment name
    #[arg(long, short)]
    pub env: String,

    /// Worker URL (optional, Cloudflare only)
    #[arg(long)]
    pub worker_url: Option<String>,

    /// AWS region (required for AWS provider)
    #[arg(long)]
    pub region: Option<String>,

    /// Overwrite existing config
    #[arg(long)]
    pub force: bool,
}

#[derive(clap::Args)]
pub struct CloudflareArgs {
    #[command(subcommand)]
    pub command: CloudflareCommands,
}

#[derive(Subcommand)]
pub enum CloudflareCommands {
    /// Create a new pipeline environment
    Create(CreateArgs),
    /// Destroy a pipeline environment
    Destroy(DestroyArgs),
    /// Show environment status
    Status(StatusArgs),
    /// Dry-run: show what would be created
    Plan(PlanArgs),
    /// Start a DuckDB query session
    Query(QueryArgs),
    /// Manage Iceberg catalog
    Catalog(CatalogArgs),
    /// Manage R2 bucket data
    Bucket(BucketArgs),
}

#[derive(clap::Args)]
pub struct AwsArgs {
    #[command(subcommand)]
    pub command: AwsCommands,
}

#[derive(Subcommand)]
pub enum AwsCommands {
    /// Generate CloudFormation template for S3 Tables + Firehose
    Create(CreateArgs),
    /// Show CloudFormation stack status
    Status(StatusArgs),
    /// Delete CloudFormation stack
    Destroy(DestroyArgs),
    /// Show what would be generated
    Plan(PlanArgs),
    /// Start a DuckDB query session connected to S3 Tables
    Query(QueryArgs),
    /// Manage S3 Tables catalog
    Catalog(AwsCatalogArgs),
}

#[derive(clap::Args)]
pub struct AzureArgs {
    #[command(subcommand)]
    pub command: AzureCommands,
}

#[derive(Subcommand)]
pub enum AzureCommands {
    /// Create Azure infrastructure (Event Hub + Stream Analytics)
    Create(CreateArgs),
    /// Show Azure deployment status
    Status(StatusArgs),
    /// Delete Azure infrastructure
    Destroy(DestroyArgs),
    /// Show what would be created
    Plan(PlanArgs),
}

#[derive(clap::Args)]
pub struct AwsCatalogArgs {
    #[command(subcommand)]
    pub command: AwsCatalogCommands,
}

#[derive(Subcommand)]
pub enum AwsCatalogCommands {
    /// List S3 Tables metadata
    List(AwsCatalogListArgs),
}

#[derive(clap::Args)]
pub struct AwsCatalogListArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,

    /// AWS region (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub region: Option<String>,
}

#[derive(clap::Args)]
pub struct CatalogArgs {
    #[command(subcommand)]
    pub command: CatalogCommands,
}

#[derive(clap::Args)]
pub struct BucketArgs {
    #[command(subcommand)]
    pub command: BucketCommands,
}

#[derive(Subcommand)]
pub enum BucketCommands {
    /// Delete all objects in the bucket using AWS CLI
    Delete(BucketDeleteArgs),
}

#[derive(clap::Args)]
pub struct BucketDeleteArgs {
    /// Environment name (bucket will be otlp2pipeline-{name})
    pub name: String,

    /// Override bucket name (use exact name instead of otlp2pipeline-{name})
    #[arg(long)]
    pub bucket: Option<String>,

    /// AWS Access Key ID for R2 S3 API
    #[arg(long, env = "AWS_ACCESS_KEY_ID")]
    pub access_key_id: String,

    /// AWS Secret Access Key for R2 S3 API
    #[arg(long, env = "AWS_SECRET_ACCESS_KEY")]
    pub secret_access_key: String,

    /// Skip confirmation prompt
    #[arg(long)]
    pub force: bool,
}

#[derive(Subcommand)]
pub enum CatalogCommands {
    /// List table metadata including partition specs
    List(CatalogListArgs),
    /// Add service_name identity partition to all tables
    Partition(CatalogPartitionArgs),
}

#[derive(clap::Args)]
pub struct CatalogListArgs {
    /// R2 API token (create at dash.cloudflare.com > R2 > Manage R2 API Tokens)
    #[arg(long = "r2-token", env = "R2_API_TOKEN")]
    pub r2_token: String,

    /// Path to wrangler.toml config file
    #[arg(long, default_value = "wrangler.toml")]
    pub config: String,
}

#[derive(clap::Args)]
pub struct CatalogPartitionArgs {
    /// R2 API token (create at dash.cloudflare.com > R2 > Manage R2 API Tokens)
    #[arg(long = "r2-token", env = "R2_API_TOKEN")]
    pub r2_token: String,

    /// Path to wrangler.toml config file
    #[arg(long, default_value = "wrangler.toml")]
    pub config: String,

    /// Show what would change without applying
    #[arg(long)]
    pub dry_run: bool,
}

#[derive(clap::Args)]
pub struct CreateArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,

    /// Path to write config file (stdout if not specified)
    #[arg(long, short)]
    pub output: Option<String>,

    // --- Cloudflare-specific options ---
    /// R2 API token (create at dash.cloudflare.com > R2 > Manage R2 API Tokens)
    ///
    /// Required permissions: Admin Read & Write. This is separate from CF_API_TOKEN.
    /// Required for Cloudflare provider.
    #[arg(long = "r2-token", env = "R2_API_TOKEN")]
    pub r2_token: Option<String>,

    /// Enable logs signal (Cloudflare)
    #[arg(long, default_value = "true")]
    pub logs: bool,

    /// Enable traces signal (Cloudflare)
    #[arg(long, default_value = "true")]
    pub traces: bool,

    /// Enable metrics signals (Cloudflare)
    #[arg(long, default_value = "true")]
    pub metrics: bool,

    /// Enable RED metrics Durable Object (Cloudflare)
    #[arg(long, default_value = "true")]
    pub aggregator: bool,

    /// Enable WebSocket streaming Durable Object (Cloudflare)
    #[arg(long, default_value = "true")]
    pub livetail: bool,

    /// Aggregator retention in minutes (Cloudflare)
    #[arg(long, default_value = "60")]
    pub retention: u32,

    /// Rolling policy interval in seconds (Cloudflare)
    #[arg(long, default_value = "300")]
    pub rolling_interval: u32,

    /// Build worker locally instead of downloading from GitHub releases (Cloudflare)
    #[arg(long)]
    pub use_local: bool,

    // --- AWS-specific options ---
    /// AWS region (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub region: Option<String>,

    /// S3 Table Bucket name (AWS)
    #[arg(long, default_value = "otlp2pipeline")]
    pub table_bucket_name: String,

    /// S3 Table Namespace name (AWS)
    #[arg(long, default_value = "default")]
    pub namespace: String,

    /// Build and deploy Lambda from local repo (AWS)
    #[arg(long)]
    pub local: bool,

    // --- Azure-specific options ---
    /// Container image to deploy (Azure)
    #[arg(
        long,
        default_value = "ghcr.io/smithclay/otlp2pipeline:v0.3.0-rc1-amd64"
    )]
    pub image: String,

    // --- Shared options ---
    /// Disable bearer token authentication (NOT recommended for production)
    ///
    /// By default, a secure random token is generated and configured on the Lambda/Worker.
    /// The token is saved to .otlp2pipeline.toml for use with the connect command.
    /// Use --no-auth to skip token generation.
    #[arg(long)]
    pub no_auth: bool,
}

#[derive(clap::Args)]
pub struct DestroyArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,

    /// Skip confirmation prompt
    #[arg(long)]
    pub force: bool,

    /// Also delete the worker script (Cloudflare)
    #[arg(long)]
    pub include_worker: bool,

    // --- AWS-specific options ---
    /// AWS region (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub region: Option<String>,
}

#[derive(clap::Args)]
pub struct StatusArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,

    // --- AWS-specific options ---
    /// AWS region (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub region: Option<String>,
}

#[derive(clap::Args)]
pub struct PlanArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,

    /// AWS region (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub region: Option<String>,
}

#[derive(clap::Args)]
pub struct QueryArgs {
    /// Environment name (overrides .otlp2pipeline.toml)
    #[arg(long)]
    pub env: Option<String>,
}

#[derive(clap::Args)]
pub struct ServicesArgs {
    /// Worker URL (falls back to wrangler.toml)
    #[arg(long)]
    pub url: Option<String>,
}

#[derive(clap::Args)]
pub struct TailArgs {
    /// Service name to tail
    pub service: String,

    /// Signal type (logs or traces)
    pub signal: String,

    /// Worker URL (falls back to wrangler.toml)
    #[arg(long)]
    pub url: Option<String>,
}

#[derive(clap::Args)]
pub struct ConnectArgs {
    #[command(subcommand)]
    pub command: ConnectCommands,
}

#[derive(Subcommand)]
pub enum ConnectCommands {
    /// Generate OpenTelemetry Collector config (otel-collector-config.yaml)
    OtelCollector(ConnectOtelCollectorArgs),
    /// Generate shell exports for Claude Code integration
    ClaudeCode(ConnectClaudeCodeArgs),
    /// Generate TOML config for OpenAI Codex CLI
    Codex(ConnectCodexArgs),
}

#[derive(clap::Args)]
pub struct ConnectOtelCollectorArgs {
    /// Worker URL (falls back to wrangler.toml)
    #[arg(long)]
    pub url: Option<String>,
}

#[derive(clap::Args)]
pub struct ConnectClaudeCodeArgs {
    /// Worker URL (falls back to wrangler.toml)
    #[arg(long)]
    pub url: Option<String>,

    /// Output format
    #[arg(long, default_value = "shell")]
    pub format: String,
}

#[derive(clap::Args)]
pub struct ConnectCodexArgs {
    /// Worker URL (falls back to wrangler.toml)
    #[arg(long)]
    pub url: Option<String>,
}