-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from madrisan/podman-3.0-api
feat: Podman 3.0+ API support
- Loading branch information
Showing
31 changed files
with
702 additions
and
1,830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
nagios-plugins-linux (32-1) stable; urgency=low | ||
* Release 32 "Gematria": | ||
- Fixes in check_network, check_users, and check_cpufreq. | ||
|
||
-- Davide Madrisan <[email protected]> Thu, 25 Jan 2024 22:44:00 +0200 | ||
|
||
nagios-plugins-linux (31-1) stable; urgency=low | ||
* Release 31 "Counter-intuitive": | ||
- New plugin check_filecount | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/nagios/plugins/check_container |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Process this file with automake to produce Makefile.in | ||
|
||
## Copyright (c) 2014-2016 Davide Madrisan <[email protected]> | ||
## Copyright (c) 2014-2024 Davide Madrisan <[email protected]> | ||
## | ||
## This program is free software: you can redistribute it and/or modify | ||
## it under the terms of the GNU General Public License as published by | ||
|
@@ -20,8 +20,7 @@ AM_CPPFLAGS = -include $(top_builddir)/config.h | |
noinst_HEADERS = \ | ||
collection.h \ | ||
common.h \ | ||
container_docker.h \ | ||
container_podman.h \ | ||
container.h \ | ||
cpudesc.h \ | ||
cpufreq.h \ | ||
cpustats.h \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Process this file with automake to produce Makefile.in | ||
|
||
## Copyright (c) 2014-2016 Davide Madrisan <[email protected]> | ||
## Copyright (c) 2014-2024 Davide Madrisan <[email protected]> | ||
## | ||
## This program is free software: you can redistribute it and/or modify | ||
## it under the terms of the GNU General Public License as published by | ||
|
@@ -19,15 +19,14 @@ AM_CPPFLAGS = \ | |
-include $(top_builddir)/config.h \ | ||
-I$(top_srcdir)/include \ | ||
-DDOCKER_SOCKET=\"$(DOCKER_SOCKET)\" \ | ||
-DVARLINK_ADDRESS=\"$(VARLINK_ADDRESS)\" \ | ||
-DPODMAN_SOCKET=\"$(PODMAN_SOCKET)\" \ | ||
$(LIBCURL_CPPFLAGS) \ | ||
$(LIBPROCPS_CPPFLAGS) | ||
|
||
noinst_LIBRARIES = libutils.a | ||
|
||
libutils_a_SOURCES = \ | ||
collection.c \ | ||
container_docker_memory.c \ | ||
cpudesc.c \ | ||
cpufreq.c \ | ||
cpustats.c \ | ||
|
@@ -55,14 +54,7 @@ libutils_a_SOURCES = \ | |
|
||
if HAVE_LIBCURL | ||
libutils_a_SOURCES += \ | ||
container_docker_count.c | ||
endif | ||
|
||
if HAVE_LIBVARLINK | ||
libutils_a_SOURCES += \ | ||
container_podman.c \ | ||
container_podman_count.c \ | ||
container_podman_stats.c | ||
container.c | ||
endif | ||
|
||
if HAVE_LIBPROCPS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.