django-restit 4.2.117__py3-none-any.whl → 4.2.118__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.
- {django_restit-4.2.117.dist-info → django_restit-4.2.118.dist-info}/METADATA +1 -1
- {django_restit-4.2.117.dist-info → django_restit-4.2.118.dist-info}/RECORD +6 -6
- metrics/models.py +5 -3
- rest/__init__.py +1 -1
- {django_restit-4.2.117.dist-info → django_restit-4.2.118.dist-info}/LICENSE.md +0 -0
- {django_restit-4.2.117.dist-info → django_restit-4.2.118.dist-info}/WHEEL +0 -0
@@ -351,7 +351,7 @@ metrics/migrations/0003_metrics_expires.py,sha256=_g4oRv4NHW-4iCQx2s1SiF38LLyFf8
|
|
351
351
|
metrics/migrations/0004_eodmetrics.py,sha256=Ky6ZVMZqa0F_SUp_QFWY7ZKBgVhy9CS4wZcsEhrkSgc,3271
|
352
352
|
metrics/migrations/0005_alter_metrics_v1_alter_metrics_v10_alter_metrics_v11_and_more.py,sha256=pmwJfpPJ1RUX_CqM66l6vvV-nrAUPo_GIan0Pc9mQHs,2358
|
353
353
|
metrics/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
354
|
-
metrics/models.py,sha256
|
354
|
+
metrics/models.py,sha256=-sATVwJpN830fb02WR7iX48dYEPHFLKJMJ-5PlS8GOw,13536
|
355
355
|
metrics/periodic.py,sha256=IayBLLat40D8FB-A3bYBW9lxm9-IzcugQunojThQ_OU,661
|
356
356
|
metrics/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
357
357
|
metrics/providers/aws.py,sha256=dIBGFE1Fvszy6rmVrn_Fm1zUDv345q4dBsg9Iit-XCc,8358
|
@@ -374,7 +374,7 @@ pushit/utils.py,sha256=IeTCGa-164nmB1jIsK1lu1O1QzUhS3BKfuXHGjCW-ck,2121
|
|
374
374
|
rest/.gitignore,sha256=TbEvWRMnAiajCTOdhiNrd9eeCAaIjRp9PRjE_VkMM5g,118
|
375
375
|
rest/README.md,sha256=V3ETc-cJu8PZIbKr9xSe_pA4JEUpC8Dhw4bQeVCDJPw,5460
|
376
376
|
rest/RemoteEvents.py,sha256=nL46U7AuxIrlw2JunphR1tsXyqi-ep_gD9CYGpYbNgE,72
|
377
|
-
rest/__init__.py,sha256=
|
377
|
+
rest/__init__.py,sha256=xEslkzQlilJn1Z0GyVu43AgfKG-dqCpYSTh7lo0rFZk,122
|
378
378
|
rest/arc4.py,sha256=y644IbF1ec--e4cUJ3KEYsewTCITK0gmlwa5mJruFC0,1967
|
379
379
|
rest/cache.py,sha256=1Qg0rkaCJCaVP0-l5hZg2CIblTdeBSlj_0fP6vlKUpU,83
|
380
380
|
rest/crypto/__init__.py,sha256=Tl0U11rgj1eBYqd6OXJ2_XSdNLumW_JkBZnaJqI6Ldw,72
|
@@ -509,7 +509,7 @@ ws4redis/servers/uwsgi.py,sha256=VyhoCI1DnVFqBiJYHoxqn5Idlf6uJPHvfBKgkjs34mo,172
|
|
509
509
|
ws4redis/settings.py,sha256=K0yBiLUuY81iDM4Yr-k8hbvjn5VVHu5zQhmMK8Dtz0s,1536
|
510
510
|
ws4redis/utf8validator.py,sha256=S0OlfjeGRP75aO6CzZsF4oTjRQAgR17OWE9rgZdMBZA,5122
|
511
511
|
ws4redis/websocket.py,sha256=R0TUyPsoVRD7Y_oU7w2I6NL4fPwiz5Vl94-fUkZgLHA,14848
|
512
|
-
django_restit-4.2.
|
513
|
-
django_restit-4.2.
|
514
|
-
django_restit-4.2.
|
515
|
-
django_restit-4.2.
|
512
|
+
django_restit-4.2.118.dist-info/LICENSE.md,sha256=VHN4hhEeVOoFjtG-5fVv4jesA4SWi0Z-KgOzzN6a1ps,1068
|
513
|
+
django_restit-4.2.118.dist-info/METADATA,sha256=NWCvCnQ0SAtLaQlZQUGKZEVIzbLf8_VNVAfNE_7Re2M,7663
|
514
|
+
django_restit-4.2.118.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
515
|
+
django_restit-4.2.118.dist-info/RECORD,,
|
metrics/models.py
CHANGED
@@ -46,17 +46,18 @@ def metric(
|
|
46
46
|
m.updateMetrics(keys, data, created)
|
47
47
|
|
48
48
|
|
49
|
-
def gauge(slug, keys, data, granularity="daily", group=None, date=None, timezone=None, slug_append=None):
|
49
|
+
def gauge(slug, keys, data, granularity="daily", group=None, date=None, timezone=None, slug_append=None, max_granularity=None):
|
50
50
|
# guage does not accumulate but just stores the data like a cache
|
51
51
|
# if calledf on the same time period it will just update the current numbers
|
52
52
|
uuid_key = generate_uuid(slug, group, slug_append)
|
53
53
|
granularities = utils.granularities(granularity, granularity)
|
54
54
|
date = normalize_date(date, timezone, group)
|
55
|
-
|
55
|
+
if max_granularity is None:
|
56
|
+
max_granularity = granularity
|
56
57
|
uuids = utils.build_keys(
|
57
58
|
uuid_key, date,
|
58
59
|
min_granularity=granularity,
|
59
|
-
max_granularity=
|
60
|
+
max_granularity=max_granularity)
|
60
61
|
|
61
62
|
for gran, key in zip(granularities, uuids):
|
62
63
|
# DO not change slug to uuid_key so we can filter by group using group field
|
@@ -72,6 +73,7 @@ def gauge(slug, keys, data, granularity="daily", group=None, date=None, timezone
|
|
72
73
|
group=group, start=utils.date_for_granulatiry(date, gran)))
|
73
74
|
m.setMetrics(keys, data, created)
|
74
75
|
|
76
|
+
|
75
77
|
def normalize_date(date=None, timezone=None, group=None):
|
76
78
|
if date is None:
|
77
79
|
date = utils.datetime.utcnow()
|
rest/__init__.py
CHANGED
File without changes
|
File without changes
|