agent360


Nameagent360 JSON
Version 1.2.48 PyPI version JSON
download
home_pagehttps://github.com/plesk/agent360
Summary360 agent
upload_time2024-04-05 15:39:50
maintainer360
docs_urlNone
author360
requires_pythonNone
licenseBSD-3-Clause
keywords 360 system monitoring agent
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Agent360

360 Monitoring ([360monitoring.com](https://360monitoring.com)) is a web service that monitors and displays statistics of
your server performance.

Agent360 is OS agnostic software compatible with Python 3.7 and 3.8.
It's been optimized to have low CPU consumption and comes with an
extendable set of useful plugins.

[![Build Status](https://github.com/plesk/agent360/workflows/Agent360-Test-And-Deploy/badge.svg?branch=master)](https://github.com/plesk/agent360/actions/workflows/test-and-deploy.yml)

## Documentation

You can find the full documentation including the feature complete REST API at [docs.360monitoring.com](https://docs.360monitoring.com/docs) and [docs.360monitoring.com/docs/api](https://docs.360monitoring.com/docs/api).

## Automatic Installation (All Linux Distributions)

You can install the default configuration of Agent360 on all Linux distributions with just one click.

1. Connect to your server via SSH.

2. Find your USERTOKEN. To do so, [go to the servers page](https://monitoring.platform360.io/servers/overview) and then click the "Add server" button.

3. Run the following command:

    ```sh
    wget -q -N https://monitoring.platform360.io/agent360.sh && bash agent360.sh USERTOKEN
    ```

## Automatic Installation (Windows)

Download the [setup](https://github.com/plesk/agent360/releases) and install it on your Windows server.

The installer will ask for your USERTOKEN which you can get [from the servers page](https://monitoring.platform360.io/servers/overview).

## Manual Installation

To customize installation options, install Agent360 manually.

1. Connect to your server via SSH.
2. Run the following command, which differs depending on your server platform:

    - Debian GNU/Linux:

        ```sh
        apt-get install python3-devel python3-setuptools python3-pip
        pip3 install agent360
        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini
        ```

    - Fedora/CentOS version 6 or earlier (python 2.7):

        ```sh
        yum install python-devel python-setuptools gcc
        easy_install agent360 netifaces psutil
        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini
        ```

    - Fedora/CentOS version 7 and later (python 3):

        ```sh
        yum install python36-devel python36 gcc
        pip3 install agent360
        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini
        ```

3. Find your USERTOKEN. To do so, [go to the servers page](https://monitoring.platform360.io/servers/overview) and then click the "Add server" button. You need this to generate a serverid.

4. Run the following command (USERTOKEN is the one you got during the previous step):

    ```sh
    agent360 hello USERTOKEN /etc/agent360-token.ini
    ```

5. Create a systemd service at `/etc/systemd/system/agent360.service` by adding the following:

    ```ini
    [Unit]
    Description=Agent360

    [Service]
    ExecStart=/usr/local/bin/agent360
    User=agent360

    [Install]
    WantedBy=multi-user.target
    ```

6. Run the following command:

    ```sh
    chmod 644 /etc/systemd/system/agent360.service
    systemctl daemon-reload
    systemctl enable agent360
    systemctl start agent360
    ```

## Building Windows setup

Prerequisite: [InnoSetup](https://jrsoftware.org/isdl.php) is used as the installer, build script assumes that it is installed in the default location.

Run `php windows/build.php` to create setup file.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plesk/agent360",
    "name": "agent360",
    "maintainer": "360",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "360support@webpros.com",
    "keywords": "360 system monitoring agent",
    "author": "360",
    "author_email": "360support@webpros.com",
    "download_url": "https://files.pythonhosted.org/packages/db/aa/9849794883fec11cfe3ffe642db57e2b4afe9836ad641fc9c7e0031d9588/agent360-1.2.48.tar.gz",
    "platform": null,
    "description": "# Agent360\n\n360 Monitoring ([360monitoring.com](https://360monitoring.com)) is a web service that monitors and displays statistics of\nyour server performance.\n\nAgent360 is OS agnostic software compatible with Python 3.7 and 3.8.\nIt's been optimized to have low CPU consumption and comes with an\nextendable set of useful plugins.\n\n[![Build Status](https://github.com/plesk/agent360/workflows/Agent360-Test-And-Deploy/badge.svg?branch=master)](https://github.com/plesk/agent360/actions/workflows/test-and-deploy.yml)\n\n## Documentation\n\nYou can find the full documentation including the feature complete REST API at [docs.360monitoring.com](https://docs.360monitoring.com/docs) and [docs.360monitoring.com/docs/api](https://docs.360monitoring.com/docs/api).\n\n## Automatic Installation (All Linux Distributions)\n\nYou can install the default configuration of Agent360 on all Linux distributions with just one click.\n\n1. Connect to your server via SSH.\n\n2. Find your USERTOKEN. To do so, [go to the servers page](https://monitoring.platform360.io/servers/overview) and then click the \"Add server\" button.\n\n3. Run the following command:\n\n    ```sh\n    wget -q -N https://monitoring.platform360.io/agent360.sh && bash agent360.sh USERTOKEN\n    ```\n\n## Automatic Installation (Windows)\n\nDownload the [setup](https://github.com/plesk/agent360/releases) and install it on your Windows server.\n\nThe installer will ask for your USERTOKEN which you can get [from the servers page](https://monitoring.platform360.io/servers/overview).\n\n## Manual Installation\n\nTo customize installation options, install Agent360 manually.\n\n1. Connect to your server via SSH.\n2. Run the following command, which differs depending on your server platform:\n\n    - Debian GNU/Linux:\n\n        ```sh\n        apt-get install python3-devel python3-setuptools python3-pip\n        pip3 install agent360\n        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini\n        ```\n\n    - Fedora/CentOS version 6 or earlier (python 2.7):\n\n        ```sh\n        yum install python-devel python-setuptools gcc\n        easy_install agent360 netifaces psutil\n        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini\n        ```\n\n    - Fedora/CentOS version 7 and later (python 3):\n\n        ```sh\n        yum install python36-devel python36 gcc\n        pip3 install agent360\n        wget -O /etc/agent360.ini https://monitoring.platform360.io/agent360.ini\n        ```\n\n3. Find your USERTOKEN. To do so, [go to the servers page](https://monitoring.platform360.io/servers/overview) and then click the \"Add server\" button. You need this to generate a serverid.\n\n4. Run the following command (USERTOKEN is the one you got during the previous step):\n\n    ```sh\n    agent360 hello USERTOKEN /etc/agent360-token.ini\n    ```\n\n5. Create a systemd service at `/etc/systemd/system/agent360.service` by adding the following:\n\n    ```ini\n    [Unit]\n    Description=Agent360\n\n    [Service]\n    ExecStart=/usr/local/bin/agent360\n    User=agent360\n\n    [Install]\n    WantedBy=multi-user.target\n    ```\n\n6. Run the following command:\n\n    ```sh\n    chmod 644 /etc/systemd/system/agent360.service\n    systemctl daemon-reload\n    systemctl enable agent360\n    systemctl start agent360\n    ```\n\n## Building Windows setup\n\nPrerequisite: [InnoSetup](https://jrsoftware.org/isdl.php) is used as the installer, build script assumes that it is installed in the default location.\n\nRun `php windows/build.php` to create setup file.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "360 agent",
    "version": "1.2.48",
    "project_urls": {
        "Homepage": "https://github.com/plesk/agent360"
    },
    "split_keywords": [
        "360",
        "system",
        "monitoring",
        "agent"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "814d3649b0ffbd86afee126c00ed41ff0d3de1ab84c495c1e9e4018e42d6253f",
                "md5": "df0394c5d5d184b26ea0e2b3a3242e94",
                "sha256": "a10c5c8e3cb52225a0f4c0fd6f7af0f12a24c0c7405c3b6d9fa205821ac42ece"
            },
            "downloads": -1,
            "filename": "agent360-1.2.48-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "df0394c5d5d184b26ea0e2b3a3242e94",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 67580,
            "upload_time": "2024-04-05T15:39:48",
            "upload_time_iso_8601": "2024-04-05T15:39:48.707488Z",
            "url": "https://files.pythonhosted.org/packages/81/4d/3649b0ffbd86afee126c00ed41ff0d3de1ab84c495c1e9e4018e42d6253f/agent360-1.2.48-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbaa9849794883fec11cfe3ffe642db57e2b4afe9836ad641fc9c7e0031d9588",
                "md5": "08aec35251bd84619573137fba69403a",
                "sha256": "4a078f57ce4cfec216d1a42cf878edf50e83b924267a9e11342a600e59ff8710"
            },
            "downloads": -1,
            "filename": "agent360-1.2.48.tar.gz",
            "has_sig": false,
            "md5_digest": "08aec35251bd84619573137fba69403a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 43202,
            "upload_time": "2024-04-05T15:39:50",
            "upload_time_iso_8601": "2024-04-05T15:39:50.593168Z",
            "url": "https://files.pythonhosted.org/packages/db/aa/9849794883fec11cfe3ffe642db57e2b4afe9836ad641fc9c7e0031d9588/agent360-1.2.48.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 15:39:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "plesk",
    "github_project": "agent360",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "agent360"
}
        
360
Elapsed time: 0.19689s