Yonas Habteab
|
91c7e60df8
|
Replace all existing copyright headers with SPDX headers
I've used the following command to replace the original copyright header
lines in a C-style comment block:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
For files that use shell-style comments (#) like CMakeLists.txt, I've
used this command:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
And for SQL files:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
|
2026-02-04 14:00:05 +01:00 |
|
Julian Brost
|
be2b1a878e
|
Endpoint expose seconds_processing_messages attribute
Co-authored-by: Alexander A. Klimov <alexander.klimov@icinga.com>
|
2025-09-23 11:05:08 +02:00 |
|
Alexander A. Klimov
|
98d097517b
|
Introduce Endpoint#messages_received_per_type
|
2025-04-29 11:42:14 +02:00 |
|
Alexander A. Klimov
|
40ac05c182
|
Introduce Endpoint#capabilities
refs #8034
|
2020-10-19 13:04:20 +02:00 |
|
Alexander A. Klimov
|
645dcbdc9e
|
Introduce Endpoint#icinga_version
... and set it to e.g. 21200 via icinga::Hello.
|
2020-07-07 18:24:06 +02:00 |
|
Michael Friedrich
|
d14a88235d
|
Replace Copyright header with a short version, part I
CLion -> replace in path
|
2019-02-25 14:48:22 +01:00 |
|
Michael Friedrich
|
44c3b83769
|
icinga.com: Update '*.ti'
|
2018-10-18 09:30:00 +02:00 |
|
Michael Insel
|
158ae2188e
|
Change copyright header for 2018
|
2018-01-02 12:08:55 +01:00 |
|
Noah Hilverling
|
5519626f84
|
Add metrics about communication between endpoints
refs #5509
|
2017-12-11 10:20:25 +01:00 |
|
Michael Friedrich
|
b7caf0820d
|
Ensure that *.icinga.com is used everywhere
fixes #13897
fixes #13277
|
2017-01-10 17:19:12 +01:00 |
|
Gunnar Beutner
|
81974adf65
|
Improve performance for Endpoint config validation
fixes #12450
|
2016-08-16 13:55:37 +02:00 |
|
Gunnar Beutner
|
e3f1c1ec6f
|
Make sure timestamps are formatted as integers in macro strings
refs #11483
|
2016-06-21 11:29:12 +02:00 |
|
Gunnar Beutner
|
599929b0f6
|
Update copyright headers for 2016
|
2016-01-12 08:29:59 +01:00 |
|
Gunnar Beutner
|
4aa0165701
|
Add getter for endpoint 'connected' attribute
fixes #10394
|
2015-10-22 10:52:38 +02:00 |
|
Gunnar Beutner
|
d01f09f3ef
|
Hide internal attributes in the API
fixes #10393
|
2015-10-20 08:25:10 +02:00 |
|
Jean Flach
|
2a9ac26338
|
Move endpoint error check to ti file
refs #9623
|
2015-08-25 17:06:08 +02:00 |
|
Gunnar Beutner
|
071d2f18fb
|
Rename DynamicObject/DynamicType to ConfigObject/ConfigType
fixes #9914
|
2015-08-15 20:40:41 +02:00 |
|
Michael Friedrich
|
d7970f5bb1
|
Implement modified attributes v2
refs #9081
refs #9093
|
2015-08-15 20:07:10 +02:00 |
|
Michael Friedrich
|
78bfd0204c
|
Update copyright year
|
2015-01-22 12:00:23 +01:00 |
|
Gunnar Beutner
|
92896311f3
|
Implement support for C/C++ comments in the TI compiler
fixes #5018
|
2014-10-17 19:44:31 +02:00 |
|
Gunnar Beutner
|
adccc41a8d
|
Fix: Icinga doesn't send SetLogPosition messages when one of the endpoints fails to connect
fixes #6537
|
2014-06-23 10:00:02 +02:00 |
|
Gunnar Beutner
|
ca51fe8c56
|
Remove the keep_alive attribute.
Fixes #6304
|
2014-05-26 13:49:14 +02:00 |
|
Gunnar Beutner
|
632026cd9f
|
Rename C++ header files.
Fixes #6291
|
2014-05-25 16:27:14 +02:00 |
|
Gunnar Beutner
|
45270f1bb8
|
Refactor the agent and cluster components.
Refs #6107
|
2014-05-08 09:13:04 +02:00 |
|
Gunnar Beutner
|
e6fb8caace
|
Implement loop detection for cluster links.
Refs #5467
|
2014-04-25 15:07:13 +02:00 |
|
Michael Friedrich
|
ea973e5c82
|
Move cluster endpoint/jsonrpc functionality into libremote.
Refs #5690
Refs #5636
|
2014-03-20 18:03:47 +01:00 |
|