LogpointApi.SearchApi (logpoint_api v0.2.2)

This module provides an implementation of the Logpoint search API.

Summary

Functions

Get the devices of the instance.

Get all live search on a machine.

Get all logpoints of a Logpoint instance.

Get the repos of an instance.

Create a search and get its search id.

Retrieve the search result of a specific search id.

Get the current users time zone information.

Functions

Link to this function

get_devices(ip, credential)

@spec get_devices(String.t(), LogpointApi.Credential.t()) ::
  {:ok, map()} | {:error, String.t()}

Get the devices of the instance.

Link to this function

get_livesearches(ip, credential)

@spec get_livesearches(String.t(), LogpointApi.Credential.t()) ::
  {:ok, map()} | {:error, String.t()}

Get all live search on a machine.

Link to this function

get_logpoints(ip, credential)

@spec get_logpoints(String.t(), LogpointApi.Credential.t()) ::
  {:ok, map()} | {:error, String.t()}

Get all logpoints of a Logpoint instance.

Link to this function

get_repos(ip, credential)

@spec get_repos(String.t(), LogpointApi.Credential.t()) ::
  {:ok, map()} | {:error, String.t()}

Get the repos of an instance.

Link to this function

get_search_id(ip, credential, query)

@spec get_search_id(
  String.t(),
  LogpointApi.Credential.t(),
  LogpointApi.SearchApi.Query.t()
) ::
  {:ok, map()} | {:error, String.t()}

Create a search and get its search id.

Link to this function

get_search_result(ip, credential, search_id)

@spec get_search_result(String.t(), LogpointApi.Credential.t(), String.t()) ::
  {:ok, map()} | {:error, String.t()}

Retrieve the search result of a specific search id.

Link to this function

get_user_timezone(ip, credential)

@spec get_user_timezone(String.t(), LogpointApi.Credential.t()) ::
  {:ok, map()} | {:error, String.t()}

Get the current users time zone information.