pycarlo 0.10.171__py3-none-any.whl → 0.10.173__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,
@@ -119323,6 +119364,12 @@
119323
119364
  {
119324
119365
  "description": null,
119325
119366
  "enumValues": [
119367
+ {
119368
+ "deprecationReason": null,
119369
+ "description": "no_agent",
119370
+ "isDeprecated": false,
119371
+ "name": "NO_AGENT"
119372
+ },
119326
119373
  {
119327
119374
  "deprecationReason": null,
119328
119375
  "description": "no_collector",
@@ -126298,7 +126345,7 @@
126298
126345
  {
126299
126346
  "args": [],
126300
126347
  "deprecationReason": null,
126301
- "description": "The hash keys of query groups in query performance events",
126348
+ "description": "Hash used to group events related to the same query",
126302
126349
  "isDeprecated": false,
126303
126350
  "name": "queryGroupHash",
126304
126351
  "type": {
@@ -186913,37 +186960,6 @@
186913
186960
  "name": "CreateOrUpdateAgentMonitor",
186914
186961
  "possibleTypes": null
186915
186962
  },
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
186963
  {
186948
186964
  "description": null,
186949
186965
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -1428,6 +1428,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1428
1428
  * `CONNECTION_DELETED`: connection_deleted
1429
1429
  * `DEPRECATED_JOB_TYPE`: deprecated_job_type
1430
1430
  * `MONITOR_DELETED`: monitor_deleted
1431
+ * `NO_AGENT`: no_agent
1431
1432
  * `NO_COLLECTOR`: no_collector
1432
1433
  * `RULE_DELETED`: rule_deleted
1433
1434
  * `SIZE_COLLECTION_DISABLED`: size_collection_disabled
@@ -1438,6 +1439,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1438
1439
  "CONNECTION_DELETED",
1439
1440
  "DEPRECATED_JOB_TYPE",
1440
1441
  "MONITOR_DELETED",
1442
+ "NO_AGENT",
1441
1443
  "NO_COLLECTOR",
1442
1444
  "RULE_DELETED",
1443
1445
  "SIZE_COLLECTION_DISABLED",
@@ -20247,7 +20249,7 @@ class EventGroupKey(sgqlc.types.Type):
20247
20249
  """The metric type of the grouped events"""
20248
20250
 
20249
20251
  query_group_hash = sgqlc.types.Field(String, graphql_name="queryGroupHash")
20250
- """The hash keys of query groups in query performance events"""
20252
+ """Hash used to group events related to the same query"""
20251
20253
 
20252
20254
  job_mcon = sgqlc.types.Field(String, graphql_name="jobMcon")
20253
20255
  """MCON of the job of the grouped events"""
@@ -49957,6 +49959,12 @@ class Query(sgqlc.types.Type):
49957
49959
  "return_total_count",
49958
49960
  sgqlc.types.Arg(Boolean, graphql_name="returnTotalCount", default=False),
49959
49961
  ),
49962
+ (
49963
+ "row_sampling_config",
49964
+ sgqlc.types.Arg(
49965
+ MonitorSamplingConfigInput, graphql_name="rowSamplingConfig", default=None
49966
+ ),
49967
+ ),
49960
49968
  )
49961
49969
  ),
49962
49970
  )
@@ -49982,6 +49990,8 @@ class Query(sgqlc.types.Type):
49982
49990
  do not run (default: `true`)
49983
49991
  * `return_total_count` (`Boolean`): Returns the total count of
49984
49992
  rows from the sampling query (default: `false`)
49993
+ * `row_sampling_config` (`MonitorSamplingConfigInput`): Sampling
49994
+ configuration to only read a subset of the data
49985
49995
  """
49986
49996
 
49987
49997
  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.173
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=qtRrpmMo6-7fPVzoKk0cT6UKBl3VutaPwsvXkAhZUmU,6271471
39
+ pycarlo/lib/schema.py,sha256=y41CYz2AHSvvlB_JB97Oww-XH9J-oskbovm2nGYABCQ,2726535
40
+ pycarlo-0.10.173.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.173.dist-info/METADATA,sha256=FlwMlp1STaqW2Ro_KOOc6fS8GTIuxzgk1ubvQXkG-fs,8742
42
+ pycarlo-0.10.173.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.173.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.173.dist-info/RECORD,,