pycarlo 0.10.148__py3-none-any.whl → 0.10.150__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 +58 -0
- pycarlo/lib/schema.py +30 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.150.dist-info}/METADATA +1 -1
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.150.dist-info}/RECORD +7 -7
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.150.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.150.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.148.dist-info → pycarlo-0.10.150.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -10822,6 +10822,52 @@
|
|
|
10822
10822
|
"name": "UUID",
|
|
10823
10823
|
"ofType": null
|
|
10824
10824
|
}
|
|
10825
|
+
},
|
|
10826
|
+
{
|
|
10827
|
+
"defaultValue": null,
|
|
10828
|
+
"description": "Transforms to apply to the data source",
|
|
10829
|
+
"name": "transforms",
|
|
10830
|
+
"type": {
|
|
10831
|
+
"kind": "LIST",
|
|
10832
|
+
"name": null,
|
|
10833
|
+
"ofType": {
|
|
10834
|
+
"kind": "NON_NULL",
|
|
10835
|
+
"name": null,
|
|
10836
|
+
"ofType": {
|
|
10837
|
+
"kind": "INPUT_OBJECT",
|
|
10838
|
+
"name": "TransformInput",
|
|
10839
|
+
"ofType": null
|
|
10840
|
+
}
|
|
10841
|
+
}
|
|
10842
|
+
}
|
|
10843
|
+
},
|
|
10844
|
+
{
|
|
10845
|
+
"defaultValue": null,
|
|
10846
|
+
"description": "Structured SQL filtering conditions to apply to query",
|
|
10847
|
+
"name": "filters",
|
|
10848
|
+
"type": {
|
|
10849
|
+
"kind": "INPUT_OBJECT",
|
|
10850
|
+
"name": "FilterGroupInput",
|
|
10851
|
+
"ofType": null
|
|
10852
|
+
}
|
|
10853
|
+
},
|
|
10854
|
+
{
|
|
10855
|
+
"defaultValue": null,
|
|
10856
|
+
"description": "Filter by agent span fields (agent, workflow, task, span_name)",
|
|
10857
|
+
"name": "agentSpanFilters",
|
|
10858
|
+
"type": {
|
|
10859
|
+
"kind": "LIST",
|
|
10860
|
+
"name": null,
|
|
10861
|
+
"ofType": {
|
|
10862
|
+
"kind": "NON_NULL",
|
|
10863
|
+
"name": null,
|
|
10864
|
+
"ofType": {
|
|
10865
|
+
"kind": "INPUT_OBJECT",
|
|
10866
|
+
"name": "AgentSpanFilterInput",
|
|
10867
|
+
"ofType": null
|
|
10868
|
+
}
|
|
10869
|
+
}
|
|
10870
|
+
}
|
|
10825
10871
|
}
|
|
10826
10872
|
],
|
|
10827
10873
|
"deprecationReason": null,
|
|
@@ -63495,6 +63541,18 @@
|
|
|
63495
63541
|
"ofType": null
|
|
63496
63542
|
}
|
|
63497
63543
|
},
|
|
63544
|
+
{
|
|
63545
|
+
"args": [],
|
|
63546
|
+
"deprecationReason": null,
|
|
63547
|
+
"description": "Custom SQL for custom SQL monitors",
|
|
63548
|
+
"isDeprecated": false,
|
|
63549
|
+
"name": "customSql",
|
|
63550
|
+
"type": {
|
|
63551
|
+
"kind": "SCALAR",
|
|
63552
|
+
"name": "String",
|
|
63553
|
+
"ofType": null
|
|
63554
|
+
}
|
|
63555
|
+
},
|
|
63498
63556
|
{
|
|
63499
63557
|
"args": [],
|
|
63500
63558
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -49895,6 +49895,26 @@ class Query(sgqlc.types.Type):
|
|
|
49895
49895
|
),
|
|
49896
49896
|
),
|
|
49897
49897
|
("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
|
|
49898
|
+
(
|
|
49899
|
+
"transforms",
|
|
49900
|
+
sgqlc.types.Arg(
|
|
49901
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TransformInput)),
|
|
49902
|
+
graphql_name="transforms",
|
|
49903
|
+
default=None,
|
|
49904
|
+
),
|
|
49905
|
+
),
|
|
49906
|
+
(
|
|
49907
|
+
"filters",
|
|
49908
|
+
sgqlc.types.Arg(FilterGroupInput, graphql_name="filters", default=None),
|
|
49909
|
+
),
|
|
49910
|
+
(
|
|
49911
|
+
"agent_span_filters",
|
|
49912
|
+
sgqlc.types.Arg(
|
|
49913
|
+
sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput)),
|
|
49914
|
+
graphql_name="agentSpanFilters",
|
|
49915
|
+
default=None,
|
|
49916
|
+
),
|
|
49917
|
+
),
|
|
49898
49918
|
)
|
|
49899
49919
|
),
|
|
49900
49920
|
)
|
|
@@ -49904,6 +49924,12 @@ class Query(sgqlc.types.Type):
|
|
|
49904
49924
|
|
|
49905
49925
|
* `mcon` (`String!`): MCON to evaluate
|
|
49906
49926
|
* `connection_id` (`UUID`): Connection UUID
|
|
49927
|
+
* `transforms` (`[TransformInput!]`): Transforms to apply to the
|
|
49928
|
+
data source
|
|
49929
|
+
* `filters` (`FilterGroupInput`): Structured SQL filtering
|
|
49930
|
+
conditions to apply to query
|
|
49931
|
+
* `agent_span_filters` (`[AgentSpanFilterInput!]`): Filter by
|
|
49932
|
+
agent span fields (agent, workflow, task, span_name)
|
|
49907
49933
|
"""
|
|
49908
49934
|
|
|
49909
49935
|
get_job_execution_history_logs = sgqlc.types.Field(
|
|
@@ -72731,6 +72757,7 @@ class Event(sgqlc.types.Type, Node):
|
|
|
72731
72757
|
"table_stats",
|
|
72732
72758
|
"mc_sql",
|
|
72733
72759
|
"source_sql",
|
|
72760
|
+
"custom_sql",
|
|
72734
72761
|
"is_merged",
|
|
72735
72762
|
"description",
|
|
72736
72763
|
)
|
|
@@ -72860,6 +72887,9 @@ class Event(sgqlc.types.Type, Node):
|
|
|
72860
72887
|
source_sql = sgqlc.types.Field(String, graphql_name="sourceSql")
|
|
72861
72888
|
"""Data source SQL for monitors using a custom SQL source."""
|
|
72862
72889
|
|
|
72890
|
+
custom_sql = sgqlc.types.Field(String, graphql_name="customSql")
|
|
72891
|
+
"""Custom SQL for custom SQL monitors"""
|
|
72892
|
+
|
|
72863
72893
|
is_merged = sgqlc.types.Field(Boolean, graphql_name="isMerged")
|
|
72864
72894
|
"""Whether the event originally belonged to another alert which was
|
|
72865
72895
|
merged into the alert currently associated to this event.
|
|
@@ -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=L-nAj31Onrmd122IjCFFcxIPBuiIsFXCv2pk4pmoPFo,6212098
|
|
39
|
+
pycarlo/lib/schema.py,sha256=dCQd5HTMPX3_QF1hf3NlgJhCx1CVMaWe1Tgt7zTI5Bo,2696350
|
|
40
|
+
pycarlo-0.10.150.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.150.dist-info/METADATA,sha256=KTa8bV3iG-iuyVKLb1rxo-XqfxdsLNml5jFORkXVQyk,8742
|
|
42
|
+
pycarlo-0.10.150.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.150.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.150.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|