DISCLAIMER |
---|
As this is a community-supported script, we recommend first testing this script against non-production hosts. When upgrading a large set of Collectors, we advise running a small batch of upgrades first, to ensure that the upgrades work correctly before initiating a much larger upgrade job. |
This Python script allows managing a set of installed Sumo Logic Collectors by applying a bulk action:
-listVersions
)-listOfflineCollectors
)-upgrade
)-addSource
)-updateSource
)-deleteOfflineCollectors
)-assignBudget
)You can also optionally -filter
the set of Collectors by name, category, or list of IDs. Filter cannot be applied to offline Collectors management.
The modules requests (version >=2.4.2), terminaltables and future (if Python 2 is used) must be installed in order for the script to run properly. This can be done by simply running the commands:
pip install requests
pip install terminaltables
pip install future
The -url
, -accessid
, and -accesskey
parameters are required for API authentication purposes. API endpoints can be found in the Collector Management API. To generate a Sumo Logic Access Id and Access Key, see Create Access Keys.
If -accessid
and -accesskey
are not provided via command line arguments, the script will prompt the user to enter the access ID and key manually before proceeding.
The optional -y
parameter can be used to bypass user prompts.
Relevant information about a subset of Collectors can be printed using the -listVersions
command. An ASCII table displaying each Collector's name, id, version, category, sourceSyncMode (either "UI" or "json"), and whether the collector is "alive" (online).
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -listVersions
Output:
2016-08-01 11:26:11,292 -0700 [PROGRESS] fetching and sorting through the next 1 to 4 collectors
2016-08-01 11:26:11,293 -0700 [INFO] 4 total collectors
+----------+-----------+-----------+----------+----------------+-------+
| name | id | version | category | sourceSyncMode | alive |
+----------+-----------+-----------+----------+----------------+-------+
| ubuntu-1 | 100000077 | 19.155-13 | - | UI | True |
| ubuntu-2 | 100000078 | 19.155-13 | - | UI | True |
| ubuntu-3 | 100000079 | 19.155-13 | - | UI | True |
| ubuntu-4 | 100000080 | 19.155-13 | - | UI | True |
+----------+-----------+-----------+----------+----------------+-------+
Relvant information about subset of offline Collectors will be presented in the same way as for -listVersions
, except that -filter
cannot be applied and the only way to filter offline Collectors is providing aliveBeforeDays
value.
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -listOfflineCollectors [aliveBeforeDays]
A given subset of Collectors can be upgraded to a desired version via the -upgrade
command and the version number (e.g. 19.155-13
). The argument latest
may be passed to simply upgrade to the latest production version.
A Collector is considered upgradable if it belongs to the same customer account, is installable, not currently upgrading, and not already running the upgrade-to version. See the Upgrading Collectors help page.
By default, the Collectors are upgraded simultaneously in batches of 10, but an additional parameter -batchSize
with a number between 1 and 100 may also be provided.
The progress of the upgrades are queried about once every ten seconds and is printed in a corresponding table. All print statements are prepended with a timestamp to allow for logging.
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -upgrade latest -batchSize 20
Output:
2016-08-01 13:40:32,618 -0700 [START] upgrade for (1 to 4) of 4 collectors
...
2016-08-01 13:45:24,107 -0700 [PROGRESS] upgrade for (1 to 4) of 4 collectors
2016-08-01 13:45:24,108 -0700 [INFO] 4 total collectors
+----------+-------------+-------------+
| name | status | description |
+----------+-------------+-------------+
| ubuntu-1 | PENDING | |
| ubuntu-2 | PENDING | |
| ubuntu-3 | SUCCESS | |
| ubuntu-4 | IN PROGRESS | |
+----------+-------------+-------------+
...
2016-08-01 13:51:49,364 -0700 [PROGRESS] upgrade for (1 to 4) of 4 collectors
2016-08-01 13:51:49,364 -0700 [INFO] 4 total collectors
+----------+---------+-------------+
| name | status | description |
+----------+---------+-------------+
| ubuntu-1 | SUCCESS | |
| ubuntu-2 | SUCCESS | |
| ubuntu-3 | SUCCESS | |
| ubuntu-4 | SUCCESS | |
+----------+---------+-------------+
2016-08-01 13:51:49,365 -0700 [COMPLETE] upgrade for (1 to 4) of 4 collectors
A collection source can be added to a specified subset of Collectors by running the -addSource
command along with a file path to a single JSON file containing the source definition. For more example sources types, see the help page Use JSON to Configure Sources. Note that the Collector Management API only supports adding a single source at a time. The JSON file cannot contain an array of sources. Collectors must be running in cloud-managed mode (i.e., not using local JSON configuration) and must be online ("alive": true
).
A JSON configuration file must be provided to add the source to a Collector.
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -addSource /path/to/source.json
Example Host Metrics source JSON file:
{
"source": {
"name": "Host_Metrics",
"sourceType": "SystemStats",
"interval": 60000,
"metrics": ["CPU_User", "CPU_Sys", "Mem_Used"]
}
}
Output:
2016-08-01 11:30:27,502 -0700 [PROGRESS] fetching and sorting through the next 1 to 33 collectors
2016-08-01 11:30:27,503 -0700 [INFO] skipping 29 collectors not in UI mode...
2016-08-01 11:30:27,504 -0700 [INFO] 4 total collectors
+----------+-----------+-----------+----------+----------------+-------+
| name | id | version | category | sourceSyncMode | alive |
+----------+-----------+-----------+----------+----------------+-------+
| ubuntu-1 | 100000077 | 19.155-13 | - | UI | True |
| ubuntu-2 | 100000078 | 19.155-13 | - | UI | True |
| ubuntu-3 | 100000079 | 19.155-13 | - | UI | True |
| ubuntu-4 | 100000080 | 19.155-13 | - | UI | True |
+----------+-----------+-----------+----------+----------------+-------+
Add source from source.json to above Collectors? [Y/N]: Y
2016-08-01 11:30:35,898 -0700 [COMPLETE] add source to collectors
2016-08-01 11:30:35,899 -0700 [INFO] 4 total collectors
+----------+---------+-------------------------+
| name | status | description |
+----------+---------+-------------------------+
| ubuntu-1 | SUCCESS | Added source 100005234. |
| ubuntu-2 | SUCCESS | Added source 100005235. |
| ubuntu-3 | SUCCESS | Added source 100005236. |
| ubuntu-4 | SUCCESS | Added source 100005237. |
+----------+---------+-------------------------+
A collection source can be updated across a subset of Collectors by running the -updateSource
command along with a file path to a single JSON file containing the updated source definition.
This command will update sources with the same name belonging to Collectors in the filtered subset of Collectors.
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -updateSource /path/to/source.json
An optional -filter
parameter is used to narrow the set of Collectors that will be modified for any of the three available commands. Collectors can be filtered by name, category, version, or ids fields.
It cannot be applied to -listOfflineCollectors
or -deleteOfflineCollectors
The name field specifies a Collector name to filter. The wildcard character *
may also be used.
-filter name=prod-collector-*
The category field specifies a Collector category to filter. The wildcard character *
may also be used here.
-filter category=test
The version field specifies a Collector version number to filter.
-filter version=19.155-13
The id field specifies a list of Collector IDs to filter, separated by commas.
-filter ids=1234567,1726010,5555123
Set of offline Collectors can be deleted by using -deleteOfflineCollectors [aliveBeforeDays]
. Before this operation, list of offline Collectors that will be deleted, will be presented in the same way as for -listOfflineCollectors [aliveBeforeDays]
Example:
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -deleteOfflineCollectors [aliveBeforeDays]
A filtered set of collectors can be assigned to an Ingest Budget by using the -assignBudget
command with the ID of the budget you'd like to assign.
python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -filter name=prod-collector-* -assignBudget [Budget Id]
Below are some additional example use cases.
Getting help with the commands
$ python sumo_mgmt.py -h
Upgrading all Collectors running version A to version B
$ python sumo_mgmt.py -url https://api.sumologic.com/api/v1/ -accessid [YOUR ACCESS ID] -accesskey [YOUR ACCESS KEY] -filter version=A -upgrade B
Sumo Logic only accepts connections from clients using TLS version 1.2 or greater. To utilize the content of this repo, ensure that it's running in an execution environment that is configured to use TLS 1.2 or greater.