API Stability Long-Term

The logCollectorInstallers() GraphQL query returns a list of Log Collector installation settings.

Syntax

Below is the syntax for the logCollectorInstallers() query field:

graphql
logCollectorInstallers: [LogCollectorInstaller!]

There aren't any values to give for this query field. There are a few parameters to enter for the return values. They're listed in the Returned Datatype section. Below is an example using this query field:

Show:
graphql
query {
  logCollectorInstallers 
  {name, url, type, version}
}
Example Responses
Show:
json
{
  "data": {
    "logCollectorInstallers": [
      {
        "name": "humio-log-collector_1.7.4_linux_arm64.deb",
        "url": "http://localhost:8080/api/v1/log-collector/download/humio-log-collector_1.7.4_linux_arm64.deb",
        "type": "deb",
        "version": "1.7.4"
      },
      ...
  }
}

Returned Datatypes

The returned datatype LogCollectorInstaller has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: LogCollectorInstaller

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 26, 2024
architecturestringyes Short-TermThe CPU architecture of the installer.
configExamplestring  Short-TermAn example of the configuration.
iconstring  Short-TermThe name of the icon file.
namestringyes Short-TermThe name of the Log Collector installer file.
sizeintegeryes Short-TermThe size of the installer file.
typestringyes Short-TermThe type of installer (e.g., deb, rpm or msi files).
urlstringyes Short-TermThe URL from where the Log Collector installer may be found.
versionstringyes Short-TermThe version of the Log Collector.