-
Notifications
You must be signed in to change notification settings - Fork 813
Comparing changes
Open a pull request
base repository: prometheus/client_python
base: v0.21.0
head repository: prometheus/client_python
compare: master
- 17 commits
- 225 files changed
- 14 contributors
Commits on Sep 20, 2024
-
Add support for native histograms in OM parser (#1040)
* Start on native histogram parser * Fix regex for nh sample * Get nh sample appended * Complete parsing for simple native histogram * Add parsing for native histograms with labels, fix linting * Mitigate type and style errors * Add test for parsing coexisting native and classic hist with simple label set * Solve error in Python 3.9 tests * Add test for native + classic histograms with more than a label set and adapt logic accordigly * Separate native histogram from value field, improve conditional/try blocks * Clean up debug lines, add warnings, delete unnecessary lines Signed-off-by: Arianna Vespri <arianna.vespri@yahoo.it>
Configuration menu - View commit details
-
Copy full SHA for d7c9cd8 - Browse repository at this point
Copy the full SHA d7c9cd8View commit details
Commits on Oct 14, 2024
-
Add exemplar support to CounterMetricFamily (#1063)
Fixes #1062 Signed-off-by: David Tulloh <git-david@tulloh.id.au>
Configuration menu - View commit details
-
Copy full SHA for 37cd873 - Browse repository at this point
Copy the full SHA 37cd873View commit details
Commits on Oct 25, 2024
-
Fix write_to_textfile leaves back temp files on errors (#1044) (#1066)
Signed-off-by: Ethan S. Chen <ethanschen@163.com>
Configuration menu - View commit details
-
Copy full SHA for c89624f - Browse repository at this point
Copy the full SHA c89624fView commit details
Commits on Dec 2, 2024
-
Support UTF-8 in metric creation, parsing, and exposition (#1070)
part of #1013 Signed-off-by: Owen Williams <owen.williams@grafana.com>
Configuration menu - View commit details
-
Copy full SHA for 33e6828 - Browse repository at this point
Copy the full SHA 33e6828View commit details
Commits on Dec 3, 2024
-
Drop incorrect use of reentrant locks (#1076)
This fixes a correctness bug introduced in 0014e97 resulting in lost updates during some scenarios. The code being locked is not reentrant safe. It's preferable to deadlock in these situations instead of silently loosing updates for example. Signed-off-by: Przemysław Suliga <mail@suligap.net>
Configuration menu - View commit details
-
Copy full SHA for 00f21e9 - Browse repository at this point
Copy the full SHA 00f21e9View commit details -
Remove Python 3.8 support (#1075)
Python 3.8 already reached its EOL last month. Remove support and testing of Python 3.8 . Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Configuration menu - View commit details
-
Copy full SHA for ef95c4b - Browse repository at this point
Copy the full SHA ef95c4bView commit details
Commits on Dec 6, 2024
-
if check before deleting in remove() (#1077)
Signed-off-by: GlorifiedPig <ryan@glorifiedstudios.com>
Configuration menu - View commit details
-
Copy full SHA for 92b2397 - Browse repository at this point
Copy the full SHA 92b2397View commit details
Commits on Dec 23, 2024
-
Add support for Python 3.13 (#1080)
Signed-off-by: Iurii Pliner <yury.pliner@gmail.com>
Configuration menu 10000- View commit details
-
Copy full SHA for 5926a7c - Browse repository at this point
Copy the full SHA 5926a7cView commit details
Commits on Jan 17, 2025
-
Correct nh sample span structure and parsing (#1082)
* Add test for nh with more spans * Allow for span arrays to be of whatever length and for delta lists to be None * Allow for spans to be None, condense spans and deltas composition Signed-off-by: Arianna Vespri <arianna.vespri@yahoo.it>
Configuration menu - View commit details
-
Copy full SHA for ecf344b - Browse repository at this point
Copy the full SHA ecf344bView commit details
Commits on Jan 21, 2025
-
Migrate from setup.py to pyproject.toml (#1084)
Update the project configuration to use a pyproject.toml file instead of setup.py. This is the preferred tool and will allow easier integration with other tools in the future. We can also get rid of MANIFEST.in as the cache and compiled files are automatically excluded. Signed-off-by: Chris Marchbanks <csmarchbanks@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b0a6f12 - Browse repository at this point
Copy the full SHA b0a6f12View commit details
Commits on Jan 28, 2025
-
Changed pushgateway.md (#1083)
* Changed pushgateway.md --------- Signed-off-by: Mallika Muralidharan <mallika.muralidharan@lrz.de> Signed-off-by: Mallika Muralidharan <mallika-mur> Signed-off-by: Mallika Muralidharan <179001939+mallika-mur@users.noreply.github.com> Co-authored-by: Mallika Muralidharan <mallika.muralidharan@lrz.de>
Configuration menu - View commit details
-
Copy full SHA for 46eae7b - Browse repository at this point
Copy the full SHA 46eae7bView commit details
Commits on Mar 3, 2025
-
Fix order-dependent flaky tests related to UTF-8 support (#1093)
* Fix order-dependent flaky tests related to UTF-8 support * Add context-manager for legacy validation --------- Signed-off-by: Dennis Gaebler <dennis.gaebler@uni-ulm.de>
Configuration menu - View commit details
-
Copy full SHA for de8bb4a - Browse repository at this point
Copy the full SHA de8bb4aView commit details -
Update versions for docs Github actions (#1096)
With the deprecation of artifact@v3 the docs pipeline is no longer working. Upgrade all of the versions while in the file. Signed-off-by: Chris Marchbanks <csmarchbanks@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for e3bfa1f - Browse repository at this point
Copy the full SHA e3bfa1fView commit details
Commits on Mar 18, 2025
-
Signed-off-by: Ethan S. Chen <ethanschen@163.com>
Configuration menu - View commit details
-
Copy full SHA for c1ff3b2 - Browse repository at this point
Copy the full SHA c1ff3b2View commit details
Commits on Mar 20, 2025
-
Add note on gauge.set_function not working with mp, see #504 (#1098)
Signed-off-by: Aapeli <git@aapelivuorinen.com>
Configuration menu - View commit details
-
Copy full SHA for 23ab826 - Browse repository at this point
Copy the full SHA 23ab826View commit details
Commits on Apr 10, 2025
-
Don't send an empty HTTP header. (#1101)
This breaks strict middleware.. Signed-off-by: Nils O. Selåsdal <nos@utel.tech>
Configuration menu - View commit details
-
Copy full SHA for e3902ea - Browse repository at this point
Copy the full SHA e3902eaView commit details
Commits on May 16, 2025
-
Signed-off-by: Chris Marchbanks <csmarchbanks@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8dfa10e - Browse repository at this point
Copy the full SHA 8dfa10eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.21.0...master