Snaseem2026 commited on
Commit
18604d6
·
verified ·
1 Parent(s): f42b500

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Jenkins Error Outputs Dataset
2
+
3
+ A large synthetic dataset of Jenkins error outputs, generated for research, machine learning, and error analysis purposes. This dataset contains 100,000 entries, each simulating a real-world Jenkins error log with metadata.
4
+
5
+ ## Dataset Structure
6
+ - **Format:** JSON Lines (`.jsonl`)
7
+ - **Fields:**
8
+ - `timestamp`: ISO8601 timestamp of the error
9
+ - `job_name`: Jenkins job name
10
+ - `build_number`: Jenkins build number
11
+ - `error_message`: Jenkins error message
12
+ - `node`: Jenkins node name
13
+ - `user`: User who triggered the build
14
+
15
+ ## Example Entry
16
+ ```json
17
+ {
18
+ "timestamp": "2023-07-15T12:34:56",
19
+ "job_name": "build-app",
20
+ "build_number": 1234,
21
+ "error_message": "ERROR: Unable to access the repository",
22
+ "node": "node-5",
23
+ "user": "user12"
24
+ }
25
+ ```
26
+
27
+ ## Usage
28
+ This dataset is ideal for:
29
+ - Training and evaluating error detection models
30
+ - Building log analysis tools
31
+ - Research on CI/CD failure patterns
32
+ - Educational purposes
33
+
34
+ ## Source
35
+ Synthetic data generated by script. Not real Jenkins logs.
36
+
37
+ ## License
38
+ MIT License
39
+
40
+ ## Citation
41
+ If you use this dataset, please cite as:
42
+ ```
43
+ @dataset{snaseem2026_jenkins_errors,
44
+ title={Jenkins Error Outputs Dataset},
45
+ author={Snaseem2026},
46
+ year={2026},
47
+ url={https://huggingface.co/datasets/Snaseem2026/jenkins_errors}
48
+ }
49
+ ```