pycarlo 0.10.76__py3-none-any.whl → 0.10.77__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +36 -0
- pycarlo/lib/schema.py +18 -1
- {pycarlo-0.10.76.dist-info → pycarlo-0.10.77.dist-info}/METADATA +1 -1
- {pycarlo-0.10.76.dist-info → pycarlo-0.10.77.dist-info}/RECORD +7 -7
- {pycarlo-0.10.76.dist-info → pycarlo-0.10.77.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.76.dist-info → pycarlo-0.10.77.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.76.dist-info → pycarlo-0.10.77.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -120094,6 +120094,42 @@
|
|
|
120094
120094
|
"name": "String",
|
|
120095
120095
|
"ofType": null
|
|
120096
120096
|
}
|
|
120097
|
+
},
|
|
120098
|
+
{
|
|
120099
|
+
"args": [],
|
|
120100
|
+
"deprecationReason": null,
|
|
120101
|
+
"description": "The hash keys of query groups in query performance events",
|
|
120102
|
+
"isDeprecated": false,
|
|
120103
|
+
"name": "queryGroupHash",
|
|
120104
|
+
"type": {
|
|
120105
|
+
"kind": "SCALAR",
|
|
120106
|
+
"name": "String",
|
|
120107
|
+
"ofType": null
|
|
120108
|
+
}
|
|
120109
|
+
},
|
|
120110
|
+
{
|
|
120111
|
+
"args": [],
|
|
120112
|
+
"deprecationReason": null,
|
|
120113
|
+
"description": "MCON of the job of the grouped events",
|
|
120114
|
+
"isDeprecated": false,
|
|
120115
|
+
"name": "jobMcon",
|
|
120116
|
+
"type": {
|
|
120117
|
+
"kind": "SCALAR",
|
|
120118
|
+
"name": "String",
|
|
120119
|
+
"ofType": null
|
|
120120
|
+
}
|
|
120121
|
+
},
|
|
120122
|
+
{
|
|
120123
|
+
"args": [],
|
|
120124
|
+
"deprecationReason": null,
|
|
120125
|
+
"description": "Run ID of the job/DAG of the grouped events",
|
|
120126
|
+
"isDeprecated": false,
|
|
120127
|
+
"name": "jobRunId",
|
|
120128
|
+
"type": {
|
|
120129
|
+
"kind": "SCALAR",
|
|
120130
|
+
"name": "String",
|
|
120131
|
+
"ofType": null
|
|
120132
|
+
}
|
|
120097
120133
|
}
|
|
120098
120134
|
],
|
|
120099
120135
|
"inputFields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -19508,7 +19508,15 @@ class EventGroup(sgqlc.types.Type):
|
|
|
19508
19508
|
|
|
19509
19509
|
class EventGroupKey(sgqlc.types.Type):
|
|
19510
19510
|
__schema__ = schema
|
|
19511
|
-
__field_names__ = (
|
|
19511
|
+
__field_names__ = (
|
|
19512
|
+
"monitor_uuid",
|
|
19513
|
+
"event_type",
|
|
19514
|
+
"table_mcon",
|
|
19515
|
+
"metric",
|
|
19516
|
+
"query_group_hash",
|
|
19517
|
+
"job_mcon",
|
|
19518
|
+
"job_run_id",
|
|
19519
|
+
)
|
|
19512
19520
|
monitor_uuid = sgqlc.types.Field(UUID, graphql_name="monitorUuid")
|
|
19513
19521
|
"""The UUID of the monitor of the grouped events"""
|
|
19514
19522
|
|
|
@@ -19521,6 +19529,15 @@ class EventGroupKey(sgqlc.types.Type):
|
|
|
19521
19529
|
metric = sgqlc.types.Field(String, graphql_name="metric")
|
|
19522
19530
|
"""The metric type of the grouped events"""
|
|
19523
19531
|
|
|
19532
|
+
query_group_hash = sgqlc.types.Field(String, graphql_name="queryGroupHash")
|
|
19533
|
+
"""The hash keys of query groups in query performance events"""
|
|
19534
|
+
|
|
19535
|
+
job_mcon = sgqlc.types.Field(String, graphql_name="jobMcon")
|
|
19536
|
+
"""MCON of the job of the grouped events"""
|
|
19537
|
+
|
|
19538
|
+
job_run_id = sgqlc.types.Field(String, graphql_name="jobRunId")
|
|
19539
|
+
"""Run ID of the job/DAG of the grouped events"""
|
|
19540
|
+
|
|
19524
19541
|
|
|
19525
19542
|
class EventGroupMetadata(sgqlc.types.Type):
|
|
19526
19543
|
__schema__ = schema
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=p7_YSiX2GP33weDxmv5NBLD5DXQFdVWI0_VZ1bPTOHs,6006369
|
|
39
|
+
pycarlo/lib/schema.py,sha256=nId4LyUDsBCsWydwkoEI1smwUtF4OyBb6bK_ALbwdBo,2593609
|
|
40
|
+
pycarlo-0.10.77.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.77.dist-info/METADATA,sha256=klay0In2v2EruKq6-WJNjzoLv5YZgrjB4vLS3w57cqE,8741
|
|
42
|
+
pycarlo-0.10.77.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.77.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.77.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|