NagVis / nagvis

Visualization addon for your open source monitoring core
http://nagvis.org/
GNU General Public License v2.0
113 stars 73 forks source link

Fix error "Object of class DateTime could not be converted to int" #377

Open rbharlam opened 2 weeks ago

rbharlam commented 2 weeks ago

Hi,

First of all, thank you very much for the great work!

We're using Icinga Web 2 in combination with the nagvis plugin. However, this combination causes the following exception when performing various actions like placing hosts/services in nagvis:

{"type":"error","message":"Object of class DateTime could not be converted to int","title":"Error: Unhandled Exception"}

The only other related reference I was able to find is this: https://community.icinga.com/t/icingadb-web-1-1-0-and-nagvis-module/12713

This very small adjustment fixes the problem for us completely.

miken32 commented 2 weeks ago

I just updated to 8.2 yesterday and came here to report this. The problem is in /opt/nagvis/share/server/core/classes/objects/NagVisStatefulObject.php on line 315, but I'm sure there are more incompatibilities to be found.

(Editing to add I thought I was commenting on an issue not a PR. Obviously you know where the error is lol)

miken32 commented 2 weeks ago

I don't think the value is ever anything but a datetime. The function could be rewritten as:

    /**
     * Returns state timestamp as human readable date
     */
    public function get_date(string $attr): string {
        if($this->state[$attr] ?? null instanceof \DateTime) {
            self::$dateFormat ??= cfg('global','dateformat');

            return $this->state[$attr]->format(self::$dateFormat);
        }

        return 'N/A';
    }

But I think they are supporting versions of PHP from like 2015 so your fix probably will be more acceptable.

rbharlam commented 2 weeks ago

@miken32 very lucky finding a PR 10 minutes after creation for the same problem 😄 Especially because as far as I can tell this exists for some time already.

Could have created a bug instead too, but might as well help with a less time-intensive solution since the devs already did so much work :)

I can adjust the function if necessary, just let me know which is the preferred solution.