You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-1Lines changed: 22 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,14 +15,17 @@ easier creation of these items in a Stream deployment, such as S3 and Splunk sou
15
15
The distribution can be visualized as follows:
16
16
```
17
17
├── cribl_python_api_wrapper
18
+
│ ├── appscope_configs
18
19
│ ├── auth
19
20
│ ├── collectors
21
+
│ ├── database_connections
20
22
│ ├── diag
21
23
│ ├── event_breaker_rules
22
24
│ ├── executors
23
25
│ ├── fleet_mappings
24
26
│ ├── functions
25
27
│ ├── global_variables
28
+
│ ├── grokfiles
26
29
│ ├── groups
27
30
│ ├── inputs
28
31
│ ├── jobs
@@ -35,31 +38,49 @@ The distribution can be visualized as follows:
35
38
│ ├── notifications
36
39
│ ├── outputs
37
40
│ ├── packs
41
+
│ ├── parquetschemas
38
42
│ ├── parsers
39
43
│ ├── pipelines
40
44
│ ├── preview
45
+
│ ├── profiler
46
+
│ ├── preview
47
+
│ ├── regexes
41
48
│ ├── routes
49
+
│ ├── schemas
42
50
│ ├── system
43
51
│ ├── users
44
52
│ ├── utilities
45
53
│ └── versioning
54
+
│ ├── workers
46
55
└── tests
56
+
├── auth
57
+
├── collectors
58
+
├── diag
47
59
├── event_breaker_rules
48
60
├── functions
49
61
├── groups
50
62
├── inputs
63
+
├── jobs
51
64
├── lib
65
+
├── licenses
66
+
├── lookups
67
+
├── messages
52
68
├── misc
69
+
├── notification_targets
70
+
├── notifications
53
71
├── outputs
54
72
├── packs
55
73
├── pipelines
56
74
├── preview
75
+
├── profiler
57
76
├── routes
58
77
├── system
59
78
├── users
60
79
├── utilities
61
-
└── versioning
80
+
├── versioning
81
+
└── workers
62
82
```
83
+
* Note: subdirectories under `tests` contain sample usage and are for illustrative purposes only
63
84
64
85
### Build
65
86
To build the API wrapper module, execute the following command - srcdir will contain the `pyproject.toml` file, which contains configuration for the build process:
0 commit comments