pycarlo 0.10.119__py3-none-any.whl → 0.10.120__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 CHANGED
@@ -10506,6 +10506,43 @@
10506
10506
  "ofType": null
10507
10507
  }
10508
10508
  },
10509
+ {
10510
+ "args": [
10511
+ {
10512
+ "defaultValue": null,
10513
+ "description": "MCON to evaluate",
10514
+ "name": "mcon",
10515
+ "type": {
10516
+ "kind": "NON_NULL",
10517
+ "name": null,
10518
+ "ofType": {
10519
+ "kind": "SCALAR",
10520
+ "name": "String",
10521
+ "ofType": null
10522
+ }
10523
+ }
10524
+ },
10525
+ {
10526
+ "defaultValue": null,
10527
+ "description": "Connection UUID",
10528
+ "name": "connectionId",
10529
+ "type": {
10530
+ "kind": "SCALAR",
10531
+ "name": "UUID",
10532
+ "ofType": null
10533
+ }
10534
+ }
10535
+ ],
10536
+ "deprecationReason": null,
10537
+ "description": "(experimental) Get agent span schema from base trace table",
10538
+ "isDeprecated": false,
10539
+ "name": "evaluateAgentMonitorDataSource",
10540
+ "type": {
10541
+ "kind": "OBJECT",
10542
+ "name": "DataSourceEvaluationResult",
10543
+ "ofType": null
10544
+ }
10545
+ },
10509
10546
  {
10510
10547
  "args": [
10511
10548
  {
pycarlo/lib/schema.py CHANGED
@@ -43208,6 +43208,7 @@ class Query(sgqlc.types.Type):
43208
43208
  "get_parsed_query",
43209
43209
  "get_agent_span_groups",
43210
43210
  "get_agent_span_sample",
43211
+ "evaluate_agent_monitor_data_source",
43211
43212
  "get_job_execution_history_logs",
43212
43213
  "get_job_executions",
43213
43214
  "get_table_monitor",
@@ -49288,6 +49289,29 @@ class Query(sgqlc.types.Type):
49288
49289
  agent span fields (agent, workflow, task, span_name)
49289
49290
  """
49290
49291
 
49292
+ evaluate_agent_monitor_data_source = sgqlc.types.Field(
49293
+ DataSourceEvaluationResult,
49294
+ graphql_name="evaluateAgentMonitorDataSource",
49295
+ args=sgqlc.types.ArgDict(
49296
+ (
49297
+ (
49298
+ "mcon",
49299
+ sgqlc.types.Arg(
49300
+ sgqlc.types.non_null(String), graphql_name="mcon", default=None
49301
+ ),
49302
+ ),
49303
+ ("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
49304
+ )
49305
+ ),
49306
+ )
49307
+ """(experimental) Get agent span schema from base trace table
49308
+
49309
+ Arguments:
49310
+
49311
+ * `mcon` (`String!`): MCON to evaluate
49312
+ * `connection_id` (`UUID`): Connection UUID
49313
+ """
49314
+
49291
49315
  get_job_execution_history_logs = sgqlc.types.Field(
49292
49316
  sgqlc.types.list_of(JobExecutionHistoryLog),
49293
49317
  graphql_name="getJobExecutionHistoryLogs",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.119
3
+ Version: 0.10.120
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=POwfVBa8cJWFimqPAJ-m-5Pbz0fusO79usT4CjjI4p8,6135802
39
- pycarlo/lib/schema.py,sha256=laI5Pk6oWlxaP5hkEiq0APqnSXUXIYU1cjp31xqeGUo,2665479
40
- pycarlo-0.10.119.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.119.dist-info/METADATA,sha256=QSe0EYIpZuH0EIl_W44qkMngWdb1UhtcwhesnX9AUyM,8742
42
- pycarlo-0.10.119.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.119.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.119.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=nuoHXFFiXIUiwHEGTlfFC5RZdsxWWKLjzOv-Si7L5pM,6137040
39
+ pycarlo/lib/schema.py,sha256=zdKtuFPcLNOaA3QazC_l1noZN4YQr5uWrnme3BZqsuA,2666252
40
+ pycarlo-0.10.120.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.120.dist-info/METADATA,sha256=a_hbgqa7ywG7j_logBFGS-pHkha_vfq6Mj1WIQCwYnI,8742
42
+ pycarlo-0.10.120.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.120.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.120.dist-info/RECORD,,