Newer
Older
nextcloud-monitoring-dashboard / zabbix-agent-scripts / get_nc_metrics.py
#
# @copyright Copyright (c) 2024, Pietro Marini (pmarini@rcasys.com)
#
# @license GNU AGPL version 3 or any later version
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

import json

import requests

from functions import get_param

params_fl = "/var/lib/zabbix/params.json"

nc_token = get_param(params_fl, "nc_token")

ssl_enabled = get_param(params_fl, "ssl_enabled")

hostname = get_param(params_fl, "hostname")

if ssl_enabled:
    metric_values = json.loads(requests.get("https://{hostname}/ocs/v2.php/apps/serverinfo/api/v1/info?format=json&skipApps=false".format(hostname=hostname), 
                                         headers={"NC-Token": "%s" % nc_token}).content
                                         )
else:
    metric_values = json.loads(requests.get("http://localhost/ocs/v2.php/apps/serverinfo/api/v1/info?format=json&skipApps=false",
                                         verify=False,
                                         headers={"NC-Token": "%s" % nc_token}).content
                                         )

with open("/var/lib/zabbix/output/nc_metrics.json","w") as fl:
        json.dump(metric_values, fl)