earl 0.5.2

AI-safe CLI for AI agents
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
version = 1
provider = "datadog"
categories = ["monitoring", "observability", "infrastructure"]

command "list_monitors" {
  title       = "List monitors"
  summary     = "List all Datadog monitors"
  description = "Retrieve all monitors from your Datadog account, optionally filtered by tags."
  categories  = ["monitors"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "tags" {
    type        = "string"
    required    = false
    default     = ""
    description = "Comma-separated list of tags to filter by"
  }

  param "page_size" {
    type        = "integer"
    required    = false
    default     = 100
    description = "Number of monitors per page (max 1000)"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/monitor"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      tags      = "{{ args.tags }}"
      page_size = "{{ args.page_size }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Found {{ result | length }} monitors."
  }
}

command "get_monitor" {
  title       = "Get monitor"
  summary     = "Get a monitor by ID"
  description = "Retrieve details for a specific Datadog monitor by its ID."
  categories  = ["monitors"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "monitor_id" {
    type        = "integer"
    required    = true
    description = "The monitor ID"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/monitor/{{ args.monitor_id }}"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Monitor [{{ result.id }}]: {{ result.name }}\nType: {{ result.type }}\nStatus: {{ result.overall_state }}\nQuery: {{ result.query }}"
  }
}

command "create_monitor" {
  title       = "Create monitor"
  summary     = "Create a new Datadog monitor"
  description = "Create a new monitor with the specified type, query, and notification message."
  categories  = ["monitors"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "name" {
    type        = "string"
    required    = true
    description = "Monitor name"
  }

  param "type" {
    type        = "string"
    required    = true
    description = "Monitor type (e.g. 'metric alert', 'log alert', 'query alert')"
  }

  param "query" {
    type        = "string"
    required    = true
    description = "The monitor query (e.g. 'avg(last_5m):avg:system.cpu.user{*} > 90')"
  }

  param "message" {
    type        = "string"
    required    = true
    description = "Notification message body, supports @-mentions and markdown"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v1/monitor"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }

    body {
      kind = "json"
      value = {
        name    = "{{ args.name }}"
        type    = "{{ args.type }}"
        query   = "{{ args.query }}"
        message = "{{ args.message }}"
      }
    }
  }

  result {
    decode = "json"
    output = "Created monitor [{{ result.id }}]: {{ result.name }} ({{ result.type }})"
  }
}

command "delete_monitor" {
  title       = "Delete monitor"
  summary     = "Delete a monitor by ID"
  description = "Permanently delete a Datadog monitor."
  categories  = ["monitors"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "monitor_id" {
    type        = "integer"
    required    = true
    description = "The monitor ID to delete"
  }

  operation {
    protocol = "http"
    method   = "DELETE"
    url      = "https://api.datadoghq.com/api/v1/monitor/{{ args.monitor_id }}"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Deleted monitor {{ args.monitor_id }}."
  }
}

command "search_logs" {
  title       = "Search logs"
  summary     = "Search log events with a query"
  description = "Search Datadog log events using a log search query with time range filtering."
  categories  = ["logs"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "query" {
    type        = "string"
    required    = true
    description = "Datadog log search query (e.g. 'service:frontend status:error')"
  }

  param "from" {
    type        = "string"
    required    = false
    default     = "now-15m"
    description = "Start time as ISO 8601 or relative (e.g. 'now-1h')"
  }

  param "to" {
    type        = "string"
    required    = false
    default     = "now"
    description = "End time as ISO 8601 or relative"
  }

  param "limit" {
    type        = "integer"
    required    = false
    default     = 50
    description = "Maximum number of log entries to return (max 1000)"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v2/logs/events/search"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }

    body {
      kind = "json"
      value = {
        filter = {
          query = "{{ args.query }}"
          from  = "{{ args.from }}"
          to    = "{{ args.to }}"
        }
        page = {
          limit = "{{ args.limit }}"
        }
      }
    }
  }

  result {
    decode = "json"
    output = "Found {{ result.data | length }} log entries."
  }
}

command "create_event" {
  title       = "Create event"
  summary     = "Post an event to the Datadog event stream"
  description = "Submit a custom event to the Datadog event stream for tracking deployments, alerts, or other notable occurrences."
  categories  = ["events"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key"]
  }

  param "title" {
    type        = "string"
    required    = true
    description = "Event title"
  }

  param "text" {
    type        = "string"
    required    = true
    description = "Event body text (max 4000 characters)"
  }

  param "alert_type" {
    type        = "string"
    required    = false
    default     = "info"
    description = "Alert type: error, warning, info, or success"
  }

  param "priority" {
    type        = "string"
    required    = false
    default     = "normal"
    description = "Event priority: normal or low"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v1/events"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    body {
      kind = "json"
      value = {
        title      = "{{ args.title }}"
        text       = "{{ args.text }}"
        alert_type = "{{ args.alert_type }}"
        priority   = "{{ args.priority }}"
      }
    }
  }

  result {
    decode = "json"
    output = "Created event: {{ result.event.title }} ({{ result.status }})"
  }
}

command "list_events" {
  title       = "List events"
  summary     = "List events within a time range"
  description = "Retrieve events from the Datadog event stream within a specified time range."
  categories  = ["events"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "start" {
    type        = "integer"
    required    = true
    description = "POSIX timestamp for the start of the time range"
  }

  param "end" {
    type        = "integer"
    required    = true
    description = "POSIX timestamp for the end of the time range"
  }

  param "priority" {
    type        = "string"
    required    = false
    default     = ""
    description = "Filter by priority: normal or low"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/events"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      start    = "{{ args.start }}"
      end      = "{{ args.end }}"
      priority = "{{ args.priority }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Found {{ result.events | length }} events."
  }
}

command "query_metrics" {
  title       = "Query metrics"
  summary     = "Query timeseries metric data"
  description = "Query Datadog metric timeseries data for a given time range using a metric query expression."
  categories  = ["metrics"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "from" {
    type        = "integer"
    required    = true
    description = "POSIX timestamp for the start of the query window"
  }

  param "to" {
    type        = "integer"
    required    = true
    description = "POSIX timestamp for the end of the query window"
  }

  param "query" {
    type        = "string"
    required    = true
    description = "Metric query expression (e.g. 'avg:system.cpu.user{*}')"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/query"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      from  = "{{ args.from }}"
      to    = "{{ args.to }}"
      query = "{{ args.query }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Query status: {{ result.status }}\n{{ result.series | length }} series returned."
  }
}

command "list_dashboards" {
  title       = "List dashboards"
  summary     = "List all Datadog dashboards"
  description = "Retrieve all dashboards from your Datadog account."
  categories  = ["dashboards"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "count" {
    type        = "integer"
    required    = false
    default     = 100
    description = "Number of dashboards to return"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/dashboard"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      count = "{{ args.count }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Found {{ result.dashboards | length }} dashboards."
  }
}

command "get_dashboard" {
  title       = "Get dashboard"
  summary     = "Get a dashboard by ID"
  description = "Retrieve details for a specific Datadog dashboard."
  categories  = ["dashboards"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "dashboard_id" {
    type        = "string"
    required    = true
    description = "The dashboard ID"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/dashboard/{{ args.dashboard_id }}"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Dashboard [{{ result.id }}]: {{ result.title }}\nLayout: {{ result.layout_type }}\nWidgets: {{ result.widgets | length }}\nURL: {{ result.url }}"
  }
}

command "list_hosts" {
  title       = "List hosts"
  summary     = "List infrastructure hosts"
  description = "Retrieve a list of hosts reporting to your Datadog account, optionally filtered by name or tag."
  categories  = ["infrastructure"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "filter" {
    type        = "string"
    required    = false
    default     = ""
    description = "Filter hosts by name, alias, or tag"
  }

  param "count" {
    type        = "integer"
    required    = false
    default     = 100
    description = "Maximum number of hosts to return (max 1000)"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v1/hosts"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      filter = "{{ args.filter }}"
      count  = "{{ args.count }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "{{ result.total_matching }} hosts found (showing {{ result.total_returned }})."
  }
}

command "mute_host" {
  title       = "Mute host"
  summary     = "Mute a host to suppress alerts"
  description = "Mute monitoring notifications for a specific host, optionally until a specified time."
  categories  = ["infrastructure"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "host_name" {
    type        = "string"
    required    = true
    description = "The hostname to mute"
  }

  param "message" {
    type        = "string"
    required    = false
    default     = ""
    description = "Reason for muting the host"
  }

  param "end" {
    type        = "integer"
    required    = false
    default     = 0
    description = "POSIX timestamp when the mute should expire (0 for indefinite)"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v1/host/{{ args.host_name }}/mute"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }

    body {
      kind = "json"
      value = {
        message  = "{{ args.message }}"
        end      = "{{ args.end }}"
        override = true
      }
    }
  }

  result {
    decode = "json"
    output = "Muted host {{ result.hostname }}."
  }
}

command "list_incidents" {
  title       = "List incidents"
  summary     = "List Datadog incidents"
  description = "Retrieve a paginated list of incidents from your Datadog account."
  categories  = ["incidents"]

  annotations {
    mode    = "read"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "page_size" {
    type        = "integer"
    required    = false
    default     = 10
    description = "Number of incidents per page"
  }

  param "page_offset" {
    type        = "integer"
    required    = false
    default     = 0
    description = "Pagination offset"
  }

  operation {
    protocol = "http"
    method   = "GET"
    url      = "https://api.datadoghq.com/api/v2/incidents"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    query = {
      "page[size]"   = "{{ args.page_size }}"
      "page[offset]" = "{{ args.page_offset }}"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }
  }

  result {
    decode = "json"
    output = "Found {{ result.data | length }} incidents."
  }
}

command "create_incident" {
  title       = "Create incident"
  summary     = "Create a new Datadog incident"
  description = "Declare a new incident in Datadog with a title and customer impact status."
  categories  = ["incidents"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "title" {
    type        = "string"
    required    = true
    description = "Incident title"
  }

  param "customer_impacted" {
    type        = "boolean"
    required    = true
    description = "Whether customers are impacted by this incident"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v2/incidents"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }

    body {
      kind = "json"
      value = {
        data = {
          type = "incidents"
          attributes = {
            title             = "{{ args.title }}"
            customer_impacted = "{{ args.customer_impacted }}"
          }
        }
      }
    }
  }

  result {
    decode = "json"
    output = "Created incident [{{ result.data.id }}]: {{ result.data.attributes.title }}"
  }
}

command "trigger_synthetics" {
  title       = "Trigger synthetic test"
  summary     = "Trigger a Datadog synthetic test on demand"
  description = "Manually trigger a synthetic monitoring test by its public ID."
  categories  = ["synthetics"]

  annotations {
    mode    = "write"
    secrets = ["datadog.api_key", "datadog.app_key"]
  }

  param "public_id" {
    type        = "string"
    required    = true
    description = "Public ID of the synthetic test to trigger"
  }

  operation {
    protocol = "http"
    method   = "POST"
    url      = "https://api.datadoghq.com/api/v1/synthetics/tests/trigger"

    auth {
      kind     = "api_key"
      location = "header"
      name     = "DD-API-KEY"
      secret   = "datadog.api_key"
    }

    headers = {
      "DD-APPLICATION-KEY" = "{{ secrets.datadog.app_key }}"
    }

    body {
      kind = "json"
      value = {
        tests = [{
          public_id = "{{ args.public_id }}"
        }]
      }
    }
  }

  result {
    decode = "json"
    output = "Triggered batch {{ result.batch_id }} — {{ result.results | length }} test(s) queued."
  }
}