Julian Brost

Results 40 issues of Julian Brost

The interpolate function does not work as expected: The yellow dots represent a series `x` and the green dots `interpolate(x)`: ![interpolate](https://user-images.githubusercontent.com/18552/29313054-251dfe8c-81b8-11e7-916a-2c19043c3ced.png) The problem is that the code at https://github.com/brutasse/graphite-api/blob/e46941a5b214f5730650389b8f1c249bc2b9ee89/graphite_api/functions.py#L561-L567 does...

I played around with TLS client certificates and found the behavior of `trusted_leaf_cert_file` really confusing and to be inconsistent with Caddy's documentation. ### Example First, generate two self-signed certificates to...

bug :lady_beetle:

Currently, `Internal.run_with_activation_context` is still available at runtime and can be (mis)used in user configuration. I can't imagine a valid use case for this function there and its use would most...

area/configuration
core/quality

The just merged PR #9451 adds a class `AtomicFile` which encapsulates the common write to a temporary file and then rename it to the final name pattern. This class should...

core/quality

Config snippet: ``` object CheckCommand "set-if-overflow" { command = ["echo"] arguments = { "42" = { set_if = 42 } "4294967296" = { set_if = 4294967296 } } } object...

bug
area/configuration
area/checks
good first issue

Previously, Icinga 2 logged to the shared "Application" log provided by default. Due to the comparatively high volume of log messages, this lead to complaints and for the early logging...

area/windows
cla/signed

Our [API documentation](https://icinga.com/docs/icinga-2/latest/doc/12-icinga2-api/) uses filters in most places, even when only filtering for a single object with a known name: * `"filter": "host.name==\"example.localdomain\"", "type": "Host"` (https://icinga.com/docs/icinga-2/latest/doc/12-icinga2-api/#process-check-result) * In case you...

area/documentation
area/api
good first issue

The API call does not explicitly specify `fixed` so the default of `true` is used. For a fixed downtime, `duration` is ignored so there is no reason for specifying it...

area/documentation
cla/signed

At the moment, Icinga 2 writes the `/var/cache/icinga2/icinga2.debug` file every time it loads a config (that is, config validation and daemon startup including reload). Analyzing `icinga2 daemon -C` using a...

enhancement
area/configuration

I mean the following just looks like it's the wrong way around: https://github.com/Icinga/icinga2/blob/bf5b905707502c0424e7f9ed5f7b5fd53dc75dc1/lib/remote/apilistener.cpp#L1809-L1817 Maybe fix it, maybe have a look if code that uses it is even needed as the...

area/distributed
TBD