pycarlo 0.10.111__py3-none-any.whl → 0.10.112__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 +783 -705
- pycarlo/lib/schema.py +18 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.112.dist-info}/METADATA +1 -1
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.112.dist-info}/RECORD +7 -7
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.112.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.112.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.112.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -5216,6 +5216,7 @@ class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
|
|
|
5216
5216
|
class UserDefinedMonitors(sgqlc.types.Enum):
|
|
5217
5217
|
"""Enumeration Choices:
|
|
5218
5218
|
|
|
5219
|
+
* `AGENT`: Agent
|
|
5219
5220
|
* `CATEGORIES`: Dimension - legacy
|
|
5220
5221
|
* `COMPARISON`: Comparison - legacy
|
|
5221
5222
|
* `CUSTOM_SQL`: Custom SQL
|
|
@@ -5234,6 +5235,7 @@ class UserDefinedMonitors(sgqlc.types.Enum):
|
|
|
5234
5235
|
|
|
5235
5236
|
__schema__ = schema
|
|
5236
5237
|
__choices__ = (
|
|
5238
|
+
"AGENT",
|
|
5237
5239
|
"CATEGORIES",
|
|
5238
5240
|
"COMPARISON",
|
|
5239
5241
|
"CUSTOM_SQL",
|
|
@@ -10275,6 +10277,8 @@ class IMetricsMonitor(sgqlc.types.Interface):
|
|
|
10275
10277
|
"segment_count",
|
|
10276
10278
|
"bootstrap",
|
|
10277
10279
|
"sensitivity",
|
|
10280
|
+
"monitor_sql_blocks",
|
|
10281
|
+
"sampling_config",
|
|
10278
10282
|
)
|
|
10279
10283
|
monitor_fields = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="monitorFields")
|
|
10280
10284
|
"""Field/s to monitor"""
|
|
@@ -10359,6 +10363,12 @@ class IMetricsMonitor(sgqlc.types.Interface):
|
|
|
10359
10363
|
sensitivity = sgqlc.types.Field(SensitivityLevels, graphql_name="sensitivity")
|
|
10360
10364
|
"""Sensitivity for automated thresholds"""
|
|
10361
10365
|
|
|
10366
|
+
monitor_sql_blocks = sgqlc.types.Field("MonitorSqlBlocks", graphql_name="monitorSqlBlocks")
|
|
10367
|
+
"""SQL blocks used on the monitor"""
|
|
10368
|
+
|
|
10369
|
+
sampling_config = sgqlc.types.Field("MonitorSamplingConfig", graphql_name="samplingConfig")
|
|
10370
|
+
"""Sampling configuration for the monitor"""
|
|
10371
|
+
|
|
10362
10372
|
|
|
10363
10373
|
class IMonitor(sgqlc.types.Interface):
|
|
10364
10374
|
__schema__ = schema
|
|
@@ -75316,6 +75326,8 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
75316
75326
|
"alert_ids",
|
|
75317
75327
|
"invalid_rows",
|
|
75318
75328
|
"domain_restrictions",
|
|
75329
|
+
"monitor_sql_blocks",
|
|
75330
|
+
"sampling_config",
|
|
75319
75331
|
"entity_mcons",
|
|
75320
75332
|
"has_custom_rule_name",
|
|
75321
75333
|
"is_transitioning_data_provider",
|
|
@@ -75494,6 +75506,12 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
75494
75506
|
monitor, if any
|
|
75495
75507
|
"""
|
|
75496
75508
|
|
|
75509
|
+
monitor_sql_blocks = sgqlc.types.Field(MonitorSqlBlocks, graphql_name="monitorSqlBlocks")
|
|
75510
|
+
"""SQL blocks used on the monitor"""
|
|
75511
|
+
|
|
75512
|
+
sampling_config = sgqlc.types.Field(MonitorSamplingConfig, graphql_name="samplingConfig")
|
|
75513
|
+
"""Sampling configuration for the monitor"""
|
|
75514
|
+
|
|
75497
75515
|
entity_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="entityMcons")
|
|
75498
75516
|
"""MCONs for monitored tables/views"""
|
|
75499
75517
|
|
|
@@ -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=YfgKpnQwoHaUkccvxmw1g7gVhmE4OIFqBL2s96bieNw,6133824
|
|
39
|
+
pycarlo/lib/schema.py,sha256=TBY5TfshTcOX509YGvmor3eBGztG7yQ62V5NXZO4LyM,2665609
|
|
40
|
+
pycarlo-0.10.112.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.112.dist-info/METADATA,sha256=n4LOgG-eqvXjEjdJs92Bp7lf_exhRgguB4iO2D1m0ok,8742
|
|
42
|
+
pycarlo-0.10.112.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.112.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.112.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|