pycarlo 0.10.171__py3-none-any.whl → 0.10.172__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
@@ -10109,6 +10109,16 @@
10109
10109
  "name": "Boolean",
10110
10110
  "ofType": null
10111
10111
  }
10112
+ },
10113
+ {
10114
+ "defaultValue": null,
10115
+ "description": "Sampling configuration to only read a subset of the data",
10116
+ "name": "rowSamplingConfig",
10117
+ "type": {
10118
+ "kind": "INPUT_OBJECT",
10119
+ "name": "MonitorSamplingConfigInput",
10120
+ "ofType": null
10121
+ }
10112
10122
  }
10113
10123
  ],
10114
10124
  "deprecationReason": null,
@@ -111978,6 +111988,37 @@
111978
111988
  "name": "SamplingEnabledMetricTypes",
111979
111989
  "possibleTypes": null
111980
111990
  },
111991
+ {
111992
+ "description": null,
111993
+ "enumValues": null,
111994
+ "fields": null,
111995
+ "inputFields": [
111996
+ {
111997
+ "defaultValue": null,
111998
+ "description": null,
111999
+ "name": "percentage",
112000
+ "type": {
112001
+ "kind": "SCALAR",
112002
+ "name": "Float",
112003
+ "ofType": null
112004
+ }
112005
+ },
112006
+ {
112007
+ "defaultValue": null,
112008
+ "description": null,
112009
+ "name": "count",
112010
+ "type": {
112011
+ "kind": "SCALAR",
112012
+ "name": "Int",
112013
+ "ofType": null
112014
+ }
112015
+ }
112016
+ ],
112017
+ "interfaces": null,
112018
+ "kind": "INPUT_OBJECT",
112019
+ "name": "MonitorSamplingConfigInput",
112020
+ "possibleTypes": null
112021
+ },
111981
112022
  {
111982
112023
  "description": null,
111983
112024
  "enumValues": null,
@@ -126298,7 +126339,7 @@
126298
126339
  {
126299
126340
  "args": [],
126300
126341
  "deprecationReason": null,
126301
- "description": "The hash keys of query groups in query performance events",
126342
+ "description": "Hash used to group events related to the same query",
126302
126343
  "isDeprecated": false,
126303
126344
  "name": "queryGroupHash",
126304
126345
  "type": {
@@ -186913,37 +186954,6 @@
186913
186954
  "name": "CreateOrUpdateAgentMonitor",
186914
186955
  "possibleTypes": null
186915
186956
  },
186916
- {
186917
- "description": null,
186918
- "enumValues": null,
186919
- "fields": null,
186920
- "inputFields": [
186921
- {
186922
- "defaultValue": null,
186923
- "description": null,
186924
- "name": "percentage",
186925
- "type": {
186926
- "kind": "SCALAR",
186927
- "name": "Float",
186928
- "ofType": null
186929
- }
186930
- },
186931
- {
186932
- "defaultValue": null,
186933
- "description": null,
186934
- "name": "count",
186935
- "type": {
186936
- "kind": "SCALAR",
186937
- "name": "Int",
186938
- "ofType": null
186939
- }
186940
- }
186941
- ],
186942
- "interfaces": null,
186943
- "kind": "INPUT_OBJECT",
186944
- "name": "MonitorSamplingConfigInput",
186945
- "possibleTypes": null
186946
- },
186947
186957
  {
186948
186958
  "description": null,
186949
186959
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -20247,7 +20247,7 @@ class EventGroupKey(sgqlc.types.Type):
20247
20247
  """The metric type of the grouped events"""
20248
20248
 
20249
20249
  query_group_hash = sgqlc.types.Field(String, graphql_name="queryGroupHash")
20250
- """The hash keys of query groups in query performance events"""
20250
+ """Hash used to group events related to the same query"""
20251
20251
 
20252
20252
  job_mcon = sgqlc.types.Field(String, graphql_name="jobMcon")
20253
20253
  """MCON of the job of the grouped events"""
@@ -49957,6 +49957,12 @@ class Query(sgqlc.types.Type):
49957
49957
  "return_total_count",
49958
49958
  sgqlc.types.Arg(Boolean, graphql_name="returnTotalCount", default=False),
49959
49959
  ),
49960
+ (
49961
+ "row_sampling_config",
49962
+ sgqlc.types.Arg(
49963
+ MonitorSamplingConfigInput, graphql_name="rowSamplingConfig", default=None
49964
+ ),
49965
+ ),
49960
49966
  )
49961
49967
  ),
49962
49968
  )
@@ -49982,6 +49988,8 @@ class Query(sgqlc.types.Type):
49982
49988
  do not run (default: `true`)
49983
49989
  * `return_total_count` (`Boolean`): Returns the total count of
49984
49990
  rows from the sampling query (default: `false`)
49991
+ * `row_sampling_config` (`MonitorSamplingConfigInput`): Sampling
49992
+ configuration to only read a subset of the data
49985
49993
  """
49986
49994
 
49987
49995
  get_field_health_sampling_conditions = sgqlc.types.Field(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.171
3
+ Version: 0.10.172
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=H7CQX3Ey1cgqLhFCPjnGlqBaUY9abaABlok3cwT9D44,6270894
39
- pycarlo/lib/schema.py,sha256=6_eSwtYMFD0Ka0h-sCHmUdZaJZjUvvHvJsG4BmfqseY,2726132
40
- pycarlo-0.10.171.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.171.dist-info/METADATA,sha256=QYygEt-tjAqIQunJ0GBYRVN5BHsRelZrNjhGkYGgGm4,8742
42
- pycarlo-0.10.171.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.171.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.171.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=oOYRTiY0T6sNGVyeHGqAxl4xtUVOuzmKSH91gaoWFhs,6271290
39
+ pycarlo/lib/schema.py,sha256=_UdLLPqEg8tL0cuPmW7c4Iq-UCeRpMPHm3Lu0LKDr6Y,2726488
40
+ pycarlo-0.10.172.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.172.dist-info/METADATA,sha256=z1aZMjUiLLA1kiH6BgtJnsbYlxxGxDMH_UeFk62O2fM,8742
42
+ pycarlo-0.10.172.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.172.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.172.dist-info/RECORD,,