lp:~prometheus-cpp/prometheus-cpp/+git/master

Owned by prometheus-cpp
Get this repository:
git clone https://git.launchpad.net/~prometheus-cpp/prometheus-cpp/+git/master

Import details

Import Status: Reviewed

This repository is an import of the Git repository at https://github.com/jupp0r/prometheus-cpp.git.

The next import is scheduled to run .

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 20 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 10 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 10 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 20 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 10 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 10 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 15 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 20 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 10 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 15 seconds — see the log

Branches

Name Last Modified Last Commit
gh-pages 2024-06-02 12:05:24 UTC
deploy: 6492e820cdff7e7345d46d82b43735aaea542098

Author: gjasny
Author Date: 2024-06-02 12:05:24 UTC

deploy: 6492e820cdff7e7345d46d82b43735aaea542098

master 2024-06-02 12:04:54 UTC
feat(push): simplify gateway constructors

Author: Gregor Jasny
Author Date: 2024-06-02 11:55:27 UTC

feat(push): simplify gateway constructors

avoid-temporary-objects 2023-12-28 20:41:06 UTC
feat: don't create temporary objects for serialization

Author: Gregor Jasny
Author Date: 2023-12-27 20:35:12 UTC

feat: don't create temporary objects for serialization

Fix: #646

overload-serialize 2023-12-28 15:57:44 UTC
feat(core): overload serialize

Author: Gregor Jasny
Author Date: 2023-12-28 15:57:44 UTC

feat(core): overload serialize

stream-into-http-response 2023-12-28 12:16:15 UTC
wip

Author: Gregor Jasny
Author Date: 2023-12-28 12:16:15 UTC

wip

find-memory-leak 2023-12-27 15:35:58 UTC
test: add reproducer

Author: Gregor Jasny
Author Date: 2023-12-27 15:30:54 UTC

test: add reproducer

stable/1.0.x 2023-08-07 07:05:42 UTC
build: increase version number

Author: Gregor Jasny
Author Date: 2023-08-07 07:05:42 UTC

build: increase version number

use-package-managers 2022-12-20 13:25:54 UTC
wip

Author: Gregor Jasny
Author Date: 2022-12-20 13:25:54 UTC

wip

jerry-tom-master 2022-07-09 12:54:16 UTC
feat(push): Add push support http header customization

Author: jinrui
Author Date: 2022-06-17 03:36:06 UTC

feat(push): Add push support http header customization

Closes: #598

add-renovate-bot 2022-07-05 14:17:46 UTC
dispatch

Author: Gregor Jasny
Author Date: 2022-07-05 14:17:46 UTC

dispatch

ignore-empty-labels 2022-04-06 21:00:43 UTC
fix(core): ignore labels with empty value

Author: Gregor Jasny
Author Date: 2022-04-06 20:57:24 UTC

fix(core): ignore labels with empty value

The Data Model spec states:
> A label with an empty label value is considered
> equivalent to a label that does not exist.

no-atomics-if-locked-anyway 2021-11-12 10:42:07 UTC
feat(core): Don't use atomics if access is always protected by a mutex

Author: Gregor Jasny
Author Date: 2021-11-12 09:52:10 UTC

feat(core): Don't use atomics if access is always protected by a mutex

```
before:
--------------------------------------------------------------------
Benchmark Time CPU Iterations
--------------------------------------------------------------------
BM_Histogram_Observe/0 79.1 ns 79.1 ns 8292745
BM_Histogram_Observe/0 76.9 ns 76.9 ns 8572721
BM_Histogram_Observe/1 77.0 ns 77.0 ns 8621758
BM_Histogram_Observe/8 79.5 ns 79.5 ns 8611917
BM_Histogram_Observe/64 88.4 ns 88.4 ns 7598500
BM_Histogram_Observe/512 155 ns 155 ns 4451089
BM_Histogram_Observe/4096 685 ns 685 ns 1022647
BM_Histogram_Collect/0 30.2 ns 30.2 ns 22709077
BM_Histogram_Collect/0 30.8 ns 30.8 ns 23167482
BM_Histogram_Collect/1 29.9 ns 29.9 ns 22629327
BM_Histogram_Collect/8 52.1 ns 52.1 ns 13481123
BM_Histogram_Collect/64 275 ns 275 ns 2516561
BM_Histogram_Collect/512 2092 ns 2092 ns 334960
BM_Histogram_Collect/4096 16551 ns 16550 ns 41957

after:
--------------------------------------------------------------------
Benchmark Time CPU Iterations
--------------------------------------------------------------------
BM_Histogram_Observe/0 62.4 ns 62.4 ns 10253322
BM_Histogram_Observe/0 62.5 ns 62.5 ns 11240054
BM_Histogram_Observe/1 63.0 ns 63.0 ns 11206021
BM_Histogram_Observe/8 68.3 ns 68.3 ns 10251804
BM_Histogram_Observe/64 77.9 ns 77.9 ns 8973251
BM_Histogram_Observe/512 146 ns 146 ns 4800350
BM_Histogram_Observe/4096 702 ns 702 ns 998891
BM_Histogram_Collect/0 28.7 ns 28.7 ns 23895049
BM_Histogram_Collect/0 29.2 ns 29.2 ns 23922703
BM_Histogram_Collect/1 28.6 ns 28.6 ns 23867051
BM_Histogram_Collect/8 47.5 ns 47.5 ns 14753513
BM_Histogram_Collect/64 270 ns 270 ns 2597279
BM_Histogram_Collect/512 2073 ns 2073 ns 339326
BM_Histogram_Collect/4096 16438 ns 16437 ns 42435

```

microsoft-analysis 2021-10-29 14:11:53 UTC
asdf

Author: Gregor Jasny
Author Date: 2021-10-29 14:11:53 UTC

asdf

vcpkg-windows-caching 2021-07-21 14:23:52 UTC
test

Author: Gregor Jasny
Author Date: 2021-07-21 14:23:52 UTC

test

feature/summary-const-quantiles 2021-05-14 04:15:09 UTC
Make summary quantiles non-const

Author: Jupp Mueller
Author Date: 2021-05-14 03:41:19 UTC

Make summary quantiles non-const

This change removes an unnecessary API constraint that makes it
harder to dynamically construct quantile configurations for summaries.

Fixes #425

use-libabigail 2021-05-07 11:36:05 UTC
libabigail playground

Author: Gregor Jasny
Author Date: 2021-05-07 11:36:05 UTC

libabigail playground

symbols from 0.12.2

https://developers.redhat.com/blog/2020/04/02/how-to-write-an-abi-compliance-checker-using-libabigail/

codeql 2021-03-15 11:14:25 UTC
try codeql

Author: Gregor Jasny
Author Date: 2021-03-15 11:13:27 UTC

try codeql

more-label-validity-checks 2021-03-06 14:02:30 UTC
core: test for more invalid lables

Author: Gregor Jasny
Author Date: 2021-03-06 14:01:41 UTC

core: test for more invalid lables

456-docker-reproducer 2021-03-05 16:16:05 UTC
Test building with GCC 4.7

Author: Gregor Jasny
Author Date: 2021-03-05 16:16:05 UTC

Test building with GCC 4.7

Issue: #456

use-gcc-10-for-coverage 2020-12-27 19:33:26 UTC
ci: Use GCC 10 for coverage

Author: Gregor Jasny
Author Date: 2020-12-27 19:33:26 UTC

ci: Use GCC 10 for coverage

use-clang-for-coverage 2020-12-27 19:20:01 UTC
fixup! ci: Generate coverage data for gcov 9

Author: Gregor Jasny
Author Date: 2020-12-27 19:20:01 UTC

fixup! ci: Generate coverage data for gcov 9

forgeAI-nick/optimistic-family-add 2020-12-26 17:01:36 UTC
core: fix locking for and polish code

Author: Gregor Jasny
Author Date: 2020-12-26 15:07:59 UTC

core: fix locking for and polish code

use-civetweb-c-api 2020-12-07 07:49:34 UTC
pull: Use civetweb C API due to packaging issues in Debian

Author: Gregor Jasny
Author Date: 2020-12-07 07:49:34 UTC

pull: Use civetweb C API due to packaging issues in Debian

value-type 2020-11-23 08:46:11 UTC
core: typedef storage type

Author: Gregor Jasny
Author Date: 2020-11-23 08:39:40 UTC

core: typedef storage type

Issue: #416

use-tcmalloc 2020-05-10 17:14:27 UTC
fix(bazel): Use newer abseil

Author: Gregor Jasny
Author Date: 2020-05-10 17:14:27 UTC

fix(bazel): Use newer abseil

use-boost-beast 2020-04-19 09:11:24 UTC
WIP

Author: Gregor Jasny
Author Date: 2018-11-03 20:11:14 UTC

WIP

topic-Collect-const 2019-12-19 22:04:37 UTC
Fix interior mutablility problems

Author: Jupp Müller
Author Date: 2019-12-19 22:04:37 UTC

Fix interior mutablility problems

merge-same-families-cxx17 2019-07-06 20:55:03 UTC
core: Add option to merge families (C++17)

Author: Gregor Jasny
Author Date: 2019-07-06 20:01:04 UTC

core: Add option to merge families (C++17)

feature/fix-telegraf-test-scrape 2019-07-01 17:59:43 UTC
Fix telegraf scrape test

Author: Jupp Müller
Author Date: 2019-07-01 17:59:43 UTC

Fix telegraf scrape test

beast-pull 2019-01-22 21:23:02 UTC
wip

Author: Gregor Jasny
Author Date: 2019-01-22 21:23:02 UTC

wip

jerryct-scalable_counter 2018-11-03 17:49:30 UTC
Hash thread id to get bucket number

Author: Gregor Jasny
Author Date: 2018-11-03 17:49:30 UTC

Hash thread id to get bucket number

read-the-docs 2018-10-25 10:32:26 UTC
WIP

Author: Gregor Jasny
Author Date: 2018-10-25 10:32:26 UTC

WIP

feature/add-text-format 2017-08-26 09:17:11 UTC
WIP

Author: Jupp Müller
Author Date: 2017-08-26 09:17:11 UTC

WIP

coverity 2016-10-18 14:42:59 UTC
Add coverity scan to travis

Author: Jupp Müller
Author Date: 2016-10-18 11:08:05 UTC

Add coverity scan to travis

134 of 34 results
This repository contains Public information 
Everyone can see this information.