Package Details: ganglia-web 3.7.5-1

Git Clone URL: https://aur.archlinux.org/ganglia-web.git (read-only, click to copy)
Package Base: ganglia-web
Description: Web front-end to Ganglia (see ganglia package)
Upstream URL: https://github.com/ganglia/ganglia-web
Licenses: BSD
Submitter: leothrix
Maintainer: leothrix
Last Packager: leothrix
Votes: 4
Popularity: 0.000000
First Submitted: 2015-08-27 00:58 (UTC)
Last Updated: 2021-05-31 05:57 (UTC)

Dependencies (1)

Required by (1)

Sources (2)

Latest Comments

nicoulaj commented on 2018-08-04 21:53 (UTC)

The package is missing a makedepends on rsync.

wookietreiber commented on 2018-07-02 20:57 (UTC)

I've got the changes in. Also added conf_default.php to backup.

leothrix commented on 2018-07-02 04:38 (UTC)

Thank you for volunteering @wookietreiber, I've added you as a co-maintainer.

wookietreiber commented on 2018-06-23 13:27 (UTC)

I have an update to 3.7.4, if you add me as co-maintainer, I can push.

wookietreiber commented on 2018-06-22 12:01 (UTC)

They seem to be moving away from SourceForge. I think, it's negligence they don't update / remove the SourceForge stuff. I guess, we should be updating to the releases on GitHub.

leothrix commented on 2018-06-20 06:49 (UTC)

So: the somewhat-strange situation here is that although the official Ganglia homepage at http://ganglia.sourceforge.net/ notes the latest release is 3.7.2, while the GitHub page has release tags for versions up to 4.0.0 that include the noted fixes.

The "Arch" way would be to package the latest available upstream sources with minimal changes/patches, which would solve this problem, but it doesn't seem that anything past 3.7.2 releases are official? Does anyone have insight into the state of the ganglia-web release? If anything beyond 3.7.2 is strictly prerelease, then we'll probably need to bundle a patch, though it would be nice to include an unmodified later release if it includes the fix.

wookietreiber commented on 2018-06-17 11:02 (UTC)

I had the same issue as gera. I was able to fix it with:

--- usr/share/webapps/ganglia/cluster_view.php  2018-06-17 09:50:09.000000000 +0200
+++ /usr/share/webapps/ganglia/cluster_view.php 2018-06-17 12:44:25.997469023 +0200
@@ -31,7 +31,7 @@
       }
     }
     foreach ($reports as $report_name => $report_value)
-      $context_metrics[] = $report_name;
+      $context_metrics = $report_name;
   }

   if (!is_array($context_metrics))

gera commented on 2018-04-21 18:48 (UTC) (edited on 2018-04-21 18:52 (UTC) by gera)

After I configured PHP like in AUR https://wiki.archlinux.org/index.php/Apache_HTTP_Server#PHP apache was reporting the "operator not supported for strings" error. I just had to replace '$context_metrics = "";' to '$context_metrics = array();' in /usr/share/webapps/ganglia/cluster_view.php like proposed here https://github.com/ganglia/ganglia-web/issues/303