main
ts 56 lines 1.2 KB
Raw
1 import type { PipelineFull } from "@/types/graylog/pipelines.d"
2
3 export const pipeline_full: PipelineFull[] = [
4 {
5 created_at: "2023-10-01T12:00:00Z",
6 description: "Pipeline for processing customer data",
7 errors: null,
8 id: "pipeline_001",
9 modified_at: "2023-10-10T15:30:00Z",
10 source: "internal_system",
11 stages: [
12 {
13 match: "PASS",
14 rules: ["rule_001", "rule_002"],
15 rule_ids: ["rule_id_001", "rule_id_002"],
16 stage: 1
17 },
18 {
19 match: "EITHER",
20 rules: ["rule_003", "rule_004"],
21 rule_ids: ["rule_id_003", "rule_id_004"],
22 stage: 2
23 }
24 ],
25 title: "Customer Data Pipeline"
26 },
27 {
28 created_at: "2023-09-15T08:45:00Z",
29 description: "Pipeline for processing transaction data",
30 errors: "Error in stage 3",
31 id: "pipeline_002",
32 modified_at: "2023-09-20T11:00:00Z",
33 source: "external_system",
34 stages: [
35 {
36 match: "PASS",
37 rules: ["rule_005"],
38 rule_ids: ["rule_id_005"],
39 stage: 1
40 },
41 {
42 match: "PASS",
43 rules: ["rule_006", "rule_007"],
44 rule_ids: ["rule_id_006", "rule_id_007"],
45 stage: 2
46 },
47 {
48 match: "EITHER",
49 rules: ["rule_008"],
50 rule_ids: ["rule_id_008"],
51 stage: 3
52 }
53 ],
54 title: "Transaction Data Pipeline"
55 }
56 ]