Node.js module for Graylog2 API.
All methods of this module compatitible with Graylog API v1.1.4 (59783f6). Search syntax look here: The search query language. For more detail you can look Graylog REST API browser: localhost:12900/api-browser.
var graylog = require('graylog-api');
var api = graylog.connect({
basicAuth: {
username: 'admin',
password: 'secret'
}, // Optional. Default: null. Basic access authentication
protocol: 'https', // Optional. Default: 'http'. Connection protocol
host: 'example.com', // Optional. Default: 'localhost'. API hostname
port: '12900', // Optional. Default: '12900'. API port
path: '/api' // Optional. Default: ''. API Path
});
api.searchAbsolute({ // parameters
query: 'source:apache',
from: '2015-07-24T00:00:00.000Z',
to: '2015-07-25T00:00:00.000Z',
limit: '10',
fields: 'message,timestamp',
sort: 'asc'
}, function(err, data) { // callback
if (err) {
console.log(err);
} else {
console.log(data);
}
});
updateUserPassword({ // parameters
old_password: 'secret',
password: 'qwerty123'
}, { // path
username: 'admin'
}, function (err, data) { // callback
if (err) {
console.log(err);
} else {
console.log(data);
}
});
api.getSystem(function(err, data) { // only callback
if (!err) {
console.log(data);
}
});
The source is available for download from
GitHub.
Alternatively, you can install using Node Package Manager (npm
):
npm install graylog-api
API object expression has the same this syntax:
api.[methodName]([parameters][, path][, callback]);
methodName
- The method nameparameters
- Object of method to be passed to the API serverpath
- Optional object of method to be replace path variablescallback
- Optional function to be call it after receive api data. First argument is object of error (null
if no errors), second - data
getAlarmCallbacks
createAlarmCallback
getAlarmCallbacksAvailable
getAlarmCallback
updateAlarmCallback
removeAlarmCallback
createDashboard
getDashboards
getDashboard
updateDashboard
removeDashboard
updateDashboardPositions
createDashboardWidget
updateDashboardWidget
removeDashboardWidget
updateDashboardWidgetCacheTime
updateDashboardWidgetDescription
getDashboardWidgetValue
createInputExtractor
getInputExtractors
updateInputExtractorOrder
updateInputExtractor
removeInputExtractor
getInputExtractor
createBlacklistFilter
getBlacklistFilters
getBlacklistFilter
updateBlacklistFilter
removeBlacklistFilter
searchAbsolute
searchAbsoluteFieldHistogram
searchAbsoluteHistogram
searchAbsoluteStats
searchAbsoluteTerms
searchAbsoluteTermsStats
searchKeyword
searchKeywordFieldHistogram
searchKeywordHistogram
searchKeywordStats
searchKeywordTerms
searchKeywordTermsStats
searchRelative
searchRelativeFieldHistogram
searchRelativeHistogram
searchRelativeStats
searchRelativeTerms
searchRelativeTermsStats
getStreams
createStream
getStreamsEnabled
getStreamThroughput
getStreamAllThroughput
getStream
updateStream
removeStream
cloneStream
pauseStream
resumeStream
testMatchStream
getUser
getUsers
createUser
updateUser
removeUser
updateUserPassword
updateUserPermissions
removeUserPermissions
updateUserPreferences
getUserTokens
createUserToken
removeUserToken
Get a list of all alarm callbacks for this stream
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose alarm callbacks we want
- callback: {Function} Optional. Callback function
Create an alarm callback
Arguments:
- parameters: {Object} {CreateAlarmCallbackRequest}
- path: {Object}
- streamid: {String} The stream id this new alarm callback belongs to
- callback: {Function} Optional. Callback function
Get a list of all alarm callback types
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose alarm callbacks we want
- callback: {Function} Optional. Callback function
Get a single specified alarm callback for this stream
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose alarm callbacks we want
- alarmCallbackId: {String} The alarm callback id we are getting
- callback: {Function} Optional. Callback function
Update an alarm callback
Arguments:
- parameters: {Object} {Map}
- path: {Object}
- streamid: {String} The stream id this alarm callback belongs to
- alarmCallbackId: {String}
- callback: {Function} Optional. Callback function
Delete an alarm callback
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The stream id this alarm callback belongs to
- alarmCallbackId: {String}
- callback: {Function} Optional. Callback function
Create an alert condition
Arguments:
- parameters: {Object} {CreateConditionRequest}
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Get all alert conditions of this stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Modify an alert condition
Arguments:
- parameters: {Object} {CreateConditionRequest}
- path: {Object}
- streamId: {String} The stream id the alert condition belongs to
- conditionId: {String} The alert condition id
- callback: {Function} Optional. Callback function
Delete an alert condition
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- conditionId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Get the 300 most recent alarms of this stream
Arguments:
- parameters: {Object}
- since: {Integer} Optional. Optional parameter to define a lower date boundary. (UNIX timestamp)
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Check for triggered alert conditions of this streams. Results cached for 30 seconds
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The ID of the stream to check
- callback: {Function} Optional. Callback function
Add an alert receiver
Arguments:
- parameters: {Object}
- entity: {String} Name/ID of user or email address to add as alert receiver
- type: {String} Type: users or emails
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Remove an alert receiver
Arguments:
- parameters: {Object}
- type: {String} Type: users or emails
- entity: {String} Name/ID of user or email address to remove from alert receivers
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Send a test mail for a given stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Get the 300 most recent alarms of this stream
Arguments:
- parameters: {Object}
- since: {Integer} Optional. Optional parameter to define a lower date boundary. (UNIX timestamp)
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Check for triggered alert conditions of this streams. Results cached for 30 seconds
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The ID of the stream to check
- callback: {Function} Optional. Callback function
Add an alert receiver
Arguments:
- parameters: {Object}
- type: {String} Type: users or emails
- entity: {String} Name/ID of user or email address to add as alert receiver
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Remove an alert receiver
Arguments:
- parameters: {Object}
- type: {String} Type: users or emails
- entity: {String} Name/ID of user or email address to remove from alert receivers
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Send a test mail for a given stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String} The stream id this new alert condition belongs to
- callback: {Function} Optional. Callback function
Total number of messages in all your indices
Arguments:
- callback: {Function} Optional. Callback function
Create a dashboard
Arguments:
- parameters: {Object} {CreateDashboardRequest}
- callback: {Function} Optional. Callback function
Get a list of all dashboards and all configurations of their widgets
Arguments:
- callback: {Function} Optional. Callback function
Get a single dashboards and all configurations of its widgets
Arguments:
- parameters: {null}
- path: {Object}
- dashboardId: {String}
- callback: {Function} Optional. Callback function
Update the settings of a dashboard
Arguments:
- parameters: {Object} {UpdateDashboardRequest}
- path: {Object}
- dashboardId: {String}
- callback: {Function} Optional. Callback function
Delete a dashboard and all its widgets
Arguments:
- parameters: {null}
- path: {Object}
- dashboardId: {String}
- callback: {Function} Optional. Callback function
Update/set the positions of dashboard widgets
Arguments:
- parameters: {Object} {WidgetPositionsRequest}
- path: {Object}
- dashboardId: {String}
- callback: {Function} Optional. Callback function
Add a widget to a dashboard
Arguments:
- parameters: {Object} {AddWidgetRequest}
- path: {Object}
- dashboardId: {String}
- callback: {Function} Optional. Callback function
Update a widget
Arguments:
- parameters: {Object} {AddWidgetRequest}
- path: {Object}
- dashboardId: {String}
- widgetId: {String}
- callback: {Function} Optional. Callback function
Delete a widget
Arguments:
- parameters: {null}
- path: {Object}
- dashboardId: {String}
- widgetId: {String}
- callback: {Function} Optional. Callback function
Update cache time of a widget
Arguments:
- parameters: {Object} {UpdateWidgetRequest}
- path: {Object}
- dashboardId: {String}
- widgetId: {String}
- callback: {Function} Optional. Callback function
Update description of a widget
Arguments:
- parameters: {Object} {UpdateWidgetRequest}
- path: {Object}
- dashboardId: {String}
- widgetId: {String}
- callback: {Function} Optional. Callback function
Get a single widget value
Arguments:
- parameters: {null}
- path: {Object}
- dashboardId: {String}
- widgetId: {String}
- callback: {Function} Optional. Callback function
Add an extractor to an input
Arguments:
- parameters: {Object} {CreateExtractorRequest}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
List all extractors of an input
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Update extractor order of an input
Arguments:
- parameters: {Object} {OrderExtractorsRequest}
- path: {Object}
- inputId: {String} Persist ID (!) of input
- callback: {Function} Optional. Callback function
Update an extractor
Arguments:
- parameters: {Object} {CreateExtractorRequest}
- path: {Object}
- inputId: {String}
- extractorId: {String}
- callback: {Function} Optional. Callback function
Delete an extractor
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- extractorId: {String}
- callback: {Function} Optional. Callback function
Get information of a single extractor of an input
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- extractorId: {String}
- callback: {Function} Optional. Callback function
Create a blacklist filter
It can take up to a second until the change is applied
Arguments:
- parameters: {Object}
- filterEntry: {FilterDescription}
- callback: {Function} Optional. Callback function
Get all blacklist filters
Arguments:
- callback: {Function} Optional. Callback function
Get the existing blacklist filter
Arguments:
- parameters: {null}
- path: {Object}
- filterId: {String}
- callback: {Function} Optional. Callback function
Update an existing blacklist filter
It can take up to a second until the change is applied
Arguments:
- parameters: {Object}
- filterEntry: {FilterDescription}
- path: {Object}
- filterId: {String}
- callback: {Function} Optional. Callback function
Remove the existing blacklist filter
It can take up to a second until the change is applied
Arguments:
- parameters: {null}
- path: {Object}
- filterId: {String}
- callback: {Function} Optional. Callback function
Get cluster and shard health overview
Arguments:
- callback: {Function} Optional. Callback function
Get the cluster name
Arguments:
- callback: {Function} Optional. Callback function
Get a list of failed index operations
Arguments:
- parameters: {Object}
- limit: {Integer} Limit
- offset: {Integer} Offset
- callback: {Function} Optional. Callback function
Total count of failed index operations since the given date
Arguments:
- parameters: {Object}
- since: {String} ISO8601 date
- callback: {Function} Optional. Callback function
Get a list of closed indices that can be reopened
Arguments:
- callback: {Function} Optional. Callback function
Get a list of reopened indices, which will not be cleaned by retention cleaning
Arguments:
- callback: {Function} Optional. Callback function
Delete an index. This will also trigger an index ranges rebuild job
Arguments:
- parameters: {null}
- path: {Object}
- index: {String} Optional.
- callback: {Function} Optional. Callback function
Get information of an index and its shards
Arguments:
- parameters: {null}
- path: {Object}
- index: {String} Optional.
- callback: {Function} Optional. Callback function
Close an index. This will also trigger an index ranges rebuild job
Arguments:
- parameters: {null}
- path: {Object}
- index: {String} Optional.
- callback: {Function} Optional. Callback function
Reopen a closed index. This will also trigger an index ranges rebuild job
Arguments:
- parameters: {null}
- path: {Object}
- index: {String} Optional.
- callback: {Function} Optional. Callback function
Analyze a message string
Returns what tokens/terms a message string (message or full_message) is split to
Arguments:
- parameters: {Object}
- string: {String} The string to analyze
- path: {Object}
- index: {String} The index the message containing the string is stored in
- callback: {Function} Optional. Callback function
Get a single message
Arguments:
- parameters: {null}
- path: {Object}
- index: {String} The index this message is stored in
- messageId: {String}
- callback: {Function} Optional. Callback function
Message search with absolute timerange
Search for messages using an absolute timerange, specified as from/to with format yyyy-MM-ddTHH:mm:ss.SSSZ (e.g. 2014-01-23T15:34:49.000Z) or yyyy-MM-dd HH:mm:ss
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- from: {String} Timerange start. See description for date format
- to: {String} Timerange end. See description for date format
- limit: {Integer} Optional. Maximum number of messages to return
- offset: {Integer} Optional. Offset
- filter: {String} Optional. Filter
- fields: {String} Comma separated list of fields to return
- callback: {Function} Optional. Callback function
Field value histogram of a query using an absolute timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- field: {String} Field of whose values to get the histogram of
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- from: {String} Timerange start. See search method description for date format
- to: {String} Timerange end. See search method description for date format
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Datetime histogram of a query using an absolute timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- from: {String} Timerange start. See search method description for date format
- to: {String} Timerange end. See search method description for date format
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Field statistics for a query using an absolute timerange
Returns statistics like min/max or standard deviation of numeric fields over the whole query result set
Arguments:
- parameters: {Object}
- field: {String} Message field of numeric type to return statistics for
- query: {String} Query (Lucene syntax)
- from: {String} Timerange start. See search method description for date format
- to: {String} Timerange end. See search method description for date format
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Most common field terms of a query using an absolute timerange
Arguments:
- parameters: {Object}
- field: {String} Message field of to return terms of
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- from: {String} Timerange start. See search method description for date format
- to: {String} Timerange end. See search method description for date format
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Ordered field terms of a query computed on another field using an absolute timerange
Arguments:
- parameters: {Object}
- key_field: {String} Message field of to return terms of
- value_field: {String} Value field used for computation
- order: {String} What to order on (Allowed values: TERM, REVERSE_TERM, COUNT, REVERSE_COUNT, TOTAL, REVERSE_TOTAL, MIN, REVERSE_MIN, MAX, REVERSE_MAX, MEAN, REVERSE_MEAN)
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- from: {String} Timerange start. See search method description for date format
- to: {String} Timerange end. See search method description for date format
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Message search with keyword as timerange
Search for messages in a timerange defined by a keyword like "yesterday" or "2 weeks ago to wednesday"
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- keyword: {String} Range keyword
- limit: {Integer} Optional. Maximum number of messages to return
- offset: {Integer} Optional. Offset
- filter: {String} Optional. Filter
- fields: {String} Optional. Comma separated list of fields to return
- sort: {String} Optional. Sorting (field:asc / field:desc)
- callback: {Function} Optional. Callback function
Datetime histogram of a query using keyword timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- field: {String} Field of whose values to get the histogram of
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- keyword: {String} Range keyword
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Datetime histogram of a query using keyword timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- keyword: {String} Range keyword
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Field statistics for a query using a keyword timerange
Returns statistics like min/max or standard deviation of numeric fields over the whole query result set
Arguments:
- parameters: {Object}
- field: {String} Message field of numeric type to return statistics for
- query: {String} Query (Lucene syntax)
- keyword: {String} Range keyword
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Most common field terms of a query using a keyword timerange
Arguments:
- parameters: {Object}
- field: {String} Message field of to return terms of
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- keyword: {String} Range keyword
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Ordered field terms of a query computed on another field using a keyword timerange
Arguments:
- parameters: {Object}
- key_field: {String} Message field of to return terms of
- value_field: {String} Value field used for computation
- order: {String} What to order on (Allowed values: TERM, REVERSE_TERM, COUNT, REVERSE_COUNT, TOTAL, REVERSE_TOTAL, MIN, REVERSE_MIN, MAX, REVERSE_MAX, MEAN, REVERSE_MEAN)
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- keyword: {String} Keyword timeframe
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Message search with relative timerange
Search for messages in a relative timerange, specified as seconds from now. Example: 300 means search from 5 minutes ago to now
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- range: {Integer} Relative timeframe to search in. See method description
- limit: {Integer} Optional. Maximum number of messages to return
- offset: {Integer} Optional. Offset
- filter: {String} Optional. Filter
- fields: {String} Comma separated list of fields to return
- callback: {Function} Optional. Callback function
Field value histogram of a query using a relative timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- field: {String} Field of whose values to get the histogram of
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- range: {Integer} Relative timeframe to search in. See search method description
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Datetime histogram of a query using a relative timerange
Arguments:
- parameters: {Object}
- query: {String} Query (Lucene syntax)
- interval: {String} Histogram interval / bucket size. (year, quarter, month, week, day, hour or minute)
- range: {Integer} Relative timeframe to search in. See search method description
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Field statistics for a query using a relative timerange
Returns statistics like min/max or standard deviation of numeric fields over the whole query result set
Arguments:
- parameters: {Object}
- field: {String} Message field of numeric type to return statistics for
- query: {String} Query (Lucene syntax)
- range: {Integer} Relative timeframe to search in. See search method description
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Most common field terms of a query using a relative timerange
Arguments:
- parameters: {Object}
- field: {String} Message field of to return terms of
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- range: {Integer} Relative timeframe to search in. See search method description
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Ordered field terms of a query computed on another field using a relative timerange
Arguments:
- parameters: {Object}
- key_field: {String} Message field of to return terms of
- value_field: {String} Value field used for computation
- order: {String} What to order on (Allowed values: TERM, REVERSE_TERM, COUNT, REVERSE_COUNT, TOTAL, REVERSE_TOTAL, MIN, REVERSE_MIN, MAX, REVERSE_MAX, MEAN, REVERSE_MEAN)
- query: {String} Query (Lucene syntax)
- size: {Integer} Optional. Maximum number of terms to return
- range: {Integer} Relative timeframe to search in. See search method description
- filter: {String} Optional. Filter
- callback: {Function} Optional. Callback function
Create a new saved search
Arguments:
- parameters: {Object} {CreateSavedSearchRequest}
- callback: {Function} Optional. Callback function
Get a list of all saved searches
Arguments:
- callback: {Function} Optional. Callback function
Get a single saved search
Arguments:
- parameters: {null}
- path: {Object}
- searchId: {String}
- callback: {Function} Optional. Callback function
Update a saved search
Arguments:
- parameters: {Object} {CreateSavedSearchRequest}
- path: {Object}
- searchId: {String}
- callback: {Function} Optional. Callback function
Delete a saved search
Arguments:
- parameters: {null}
- path: {Object}
- searchId: {String}
- callback: {Function} Optional. Callback function
Get a list of all sources (not more than 5000) that have messages in the current indices. The result is cached for 10 seconds
Range: The parameter is in seconds relative to the current time. 86400 means "in the last day", 0 is special and means "across all indices"
Arguments:
- parameters: {Object}
- range: {Integer} Relative timeframe to search in. See method description
- callback: {Function} Optional. Callback function
Add a static field to an input
Arguments:
- parameters: {Object} {CreateStaticFieldRequest}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Remove static field of an input
Arguments:
- parameters: {null}
- path: {Object}
- Key: {String}
- inputId: {String}
- callback: {Function} Optional. Callback function
Associate outputs with a stream
Arguments:
- parameters: {Object} {AddOutputRequest}
- path: {Object}
- streamid: {String} The id of the stream whose outputs we want
- callback: {Function} Optional. Callback function
Associate outputs with a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose outputs we want
- callback: {Function} Optional. Callback function
Get specific output of a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose outputs we want
- callback: {Function} Optional. Callback function
Delete output of a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose outputs we want
- outputId: {String} The id of the output that should be deleted
- callback: {Function} Optional. Callback function
Get a list of all stream rules
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose stream rule we want
- callback: {Function} Optional. Callback function
Get a single stream rules
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The id of the stream whose stream rule we want
- streamRuleId: {String} The stream rule id we are getting
- callback: {Function} Optional. Callback function
Create a stream rule
Arguments:
- parameters: {Object} {CreateStreamRuleRequest}
- path: {Object}
- streamid: {String} The stream id this new rule belongs to
- callback: {Function} Optional. Callback function
Update a stream rule
Arguments:
- parameters: {Object} {CreateStreamRuleRequest}
- path: {Object}
- streamid: {String} The stream id this rule belongs to
- streamRuleId: {String} The stream rule id we are updating
- callback: {Function} Optional. Callback function
Delete a stream rule
Arguments:
- parameters: {null}
- path: {Object}
- streamid: {String} The stream id this new rule belongs to
- streamRuleId: {String}
- callback: {Function} Optional. Callback function
Get a list of all streams
Arguments:
- callback: {Function} Optional. Callback function
Create a stream
Arguments:
- parameters: {Object} {CreateStreamRequest}
- callback: {Function} Optional. Callback function
Get a list of all enabled streams
Arguments:
- callback: {Function} Optional. Callback function
Current throughput of this stream on this node in messages per second
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Current throughput of all visible streams on this node in messages per second
Arguments:
- callback: {Function} Optional. Callback function
Get a single stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Update a stream
Arguments:
- parameters: {Object} {UpdateStreamRequest}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Delete a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Clone a stream
Arguments:
- parameters: {Object} {CloneStreamRequest}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Pause a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Resume a stream
Arguments:
- parameters: {null}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Test matching of a stream against a supplied message
Arguments:
- parameters: {Object} {Map}
- path: {Object}
- streamId: {String}
- callback: {Function} Optional. Callback function
Get system overview
Arguments:
- callback: {Function} Optional. Callback function
Get JVM information
Arguments:
- callback: {Function} Optional. Callback function
Get a thread dump
Arguments:
- callback: {Function} Optional. Callback function
Get current utilization of buffers and caches of this node
Arguments:
- callback: {Function} Optional. Callback function
Get classnames of current buffer implementations
Arguments:
- callback: {Function} Optional. Callback function
Upload a content pack
Arguments:
- parameters: {Object}
- Request body {ConfigurationBundle} Content pack
- callback: {Function} Optional. Callback function
List available content packs
Arguments:
- callback: {Function} Optional. Callback function
Export entities as a content pack
Arguments:
- parameters: {Object}
- exportBundle: {ExportBundle} Export content pack
- callback: {Function} Optional. Callback function
Show content pack
Arguments:
- parameters: {null}
- path: {Object}
- bundleId: {String} Content pack ID
- callback: {Function} Optional. Callback function
Update content pack
Arguments:
- parameters: {Object}
- Request body {ConfigurationBundle} Content pack
- path: {Object}
- bundleId: {String} Content pack ID
- callback: {Function} Optional. Callback function
Delete content pack
Arguments:
- parameters: {null}
- path: {Object}
- bundleId: {String} Content pack ID
- callback: {Function} Optional. Callback function
Set up entities described by content pack
Arguments:
- parameters: {null}
- path: {Object}
- bundleId: {String} Content pack ID
- callback: {Function} Optional. Callback function
Information about this node
This de itself to get system information
Arguments:
- callback: {Function} Optional. Callback function
List all active nodes in this cluster
Arguments:
- parameters: {null}
- path: {Object}
- nodeId: {String}
- callback: {Function} Optional. Callback function
Information about a node
This is returning information of a node in context to its state in the cluster. Use the system API of the node itself to get system information
Arguments:
- parameters: {null}
- path: {Object}
- nodeId: {String}
- callback: {Function} Optional. Callback function
Cluster snformation
This resource returns information about the Graylog cluster
Arguments:
- callback: {Function} Optional. Callback function
Elasticsearch information
This resource returns information about the Elasticsearch Cluster
Arguments:
- callback: {Function} Optional. Callback function
MongoDB information
This aut MongoDB
Arguments:
- callback: {Function} Optional. Callback function
Lists all existing collector registrations
Arguments:
- callback: {Function} Optional. Callback function
Returns at most one collector summary for the specified collector id
Arguments:
- parameters: {null}
- path: {Object}
- collectorId: {String}
- callback: {Function} Optional. Callback function
Create/update an collector registration
This is a stateless method which upserts a collector registration
Arguments:
- parameters: {Object} {CollectorRegistrationRequest}
- path: {Object}
- collectorId: {String} The collector id this collector is registering as
- callback: {Function} Optional. Callback function
Create and send a cluster debug event
Arguments:
- parameters: {Object}
- text: {String} Optional.
- callback: {Function} Optional. Callback function
Show last received cluster debug event
Arguments:
- callback: {Function} Optional. Callback function
Create and send a local debug event
Arguments:
- parameters: {Object}
- text: {String} Optional.
- callback: {Function} Optional. Callback function
Show last received local debug event
Arguments:
- callback: {Function} Optional. Callback function
Get current deflector status
Arguments:
- callback: {Function} Optional. Callback function
Get deflector configuration. Only available on master nodes
Arguments:
- callback: {Function} Optional. Callback function
Cycle deflector to new/next index
Arguments:
- callback: {Function} Optional. Callback function
Get list of message fields that exist
This operation is comparably fast because it reads directly from the indexer mapping
Arguments:
- parameters: {Object}
- limit: {Integer} Optional. Maximum number of fields to return. Set to 0 for all fields
- callback: {Function} Optional. Callback function
Get all existing grok patterns
Arguments:
- callback: {Function} Optional. Callback function
Get the existing grok pattern
Arguments:
- parameters: {null}
- path: {Object}
- patternId: {String}
- callback: {Function} Optional. Callback function
Add a new named pattern
Arguments:
- parameters: {Object}
- pattern: {GrokPatternSummary}
- callback: {Function} Optional. Callback function
Update an existing pattern
Arguments:
- parameters: {Object}
- patterns: {Array}
- callback: {Function} Optional. Callback function
Update an existing pattern
Arguments:
- parameters: {Object}
- pattern: {GrokPatternSummary}
- path: {Object}
- patternId: {String}
- callback: {Function} Optional. Callback function
Remove an existing pattern by id
Arguments:
- callback: {Function} Optional. Callback function
Get a list of all index ranges
Arguments:
- callback: {Function} Optional. Callback function
Rebuild/sync index range information
This as in what timeranges. It atomically overwrites already existing meta information
Arguments:
- callback: {Function} Optional. Callback function
Launch input on this node
Arguments:
- parameters: {Object} {InputLaunchRequest}
- callback: {Function} Optional. Callback function
Get information of a single input on this node
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Get all inputs of this node
Arguments:
- callback: {Function} Optional. Callback function
Update input on this node
Arguments:
- parameters: {Object} {InputLaunchRequest}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Terminate input on this node
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Launch existing input on this node
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Restart existing input on this node
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Stop existing input on this node
Arguments:
- parameters: {null}
- path: {Object}
- inputId: {String}
- callback: {Function} Optional. Callback function
Get information about a single input type
Arguments:
- parameters: {null}
- path: {Object}
- inputType: {String}
- callback: {Function} Optional. Callback function
Get all available input types of this node
Arguments:
- callback: {Function} Optional. Callback function
Trigger new job
Arguments:
- parameters: {Object} {TriggerRequest}
- callback: {Function} Optional. Callback function
List currently running jobs
Arguments:
- callback: {Function} Optional. Callback function
Get information of a specific currently running job
Arguments:
- parameters: {null}
- path: {Object}
- jobId: {String}
- callback: {Function} Optional. Callback function
Get current state of the journal on this node
Arguments:
- callback: {Function} Optional. Callback function
Get the LDAP configuration if it is configured
Arguments:
- callback: {Function} Optional. Callback function
Update the LDAP configuration
Arguments:
- parameters: {Object} {LdapSettingsRequest}
- callback: {Function} Optional. Callback function
Remove the LDAP configuration
Arguments:
- callback: {Function} Optional. Callback function
Test LDAP Configuration
Arguments:
- parameters: {Object}
- Configuration to test {LdapTestConfigRequest}
- callback: {Function} Optional. Callback function
Get status of this graylog2-server node for load balancers. Returns either ALIVE with HTTP 200 or DEAD with HTTP 503
Arguments:
- callback: {Function} Optional. Callback function
Override load balancer status of this graylog2-server node. Next lifecycle change will override it again to its default. Set to ALIVE or DEAD
Arguments:
- parameters: {null}
- path: {Object}
- status: {String} Optional.
- callback: {Function} Optional. Callback function
List all loggers and their current levels
Arguments:
- callback: {Function} Optional. Callback function
List all logger subsystems and their current levels
Arguments:
- callback: {Function} Optional. Callback function
Set the loglevel of a whole subsystem
Provided level is falling back to DEBUG if it does not exist
Arguments:
- parameters: {null}
- path: {Object}
- subsystem: {String}
- level: {String}
- callback: {Function} Optional. Callback function
Set the loglevel of a single logger
Provided level is falling back to DEBUG if it does not exist
Arguments:
- parameters: {null}
- path: {Object}
- loggerName: {String}
- level: {String}
- callback: {Function} Optional. Callback function
Get internal Graylog system messages
Arguments:
- parameters: {Object}
- page: {Integer} Optional. Page
- callback: {Function} Optional. Callback function
Get a single metric
Arguments:
- parameters: {null}
- path: {Object}
- metricName: {String}
- callback: {Function} Optional. Callback function
Get all metrics
Arguments:
- callback: {Function} Optional. Callback function
Get the values of multiple metrics at once
Arguments:
- parameters: {Object}
- Requested metrics {MetricsReadRequest}
- callback: {Function} Optional. Callback function
Get all metrics keys/names
Arguments:
- callback: {Function} Optional. Callback function
Get all metrics of a namespace
Arguments:
- parameters: {null}
- path: {Object}
- namespace: {String}
- callback: {Function} Optional. Callback function
Get history of a single metric The maximum retention time is currently only 5 minutes
Arguments:
- parameters: {Object}
- after: {Long} Optional. Only values for after this UTC timestamp (1970 epoch)
- path: {Object}
- metricName: {String}
- callback: {Function} Optional. Callback function
Get all active notifications
Arguments:
- callback: {Function} Optional. Callback function
Delete a notification
Arguments:
- parameters: {null}
- path: {Object}
- notificationType: {String} Optional.
- callback: {Function} Optional. Callback function
Get specific output
Arguments:
- parameters: {null}
- path: {Object}
- outputId: {String} The id of the output we want
- callback: {Function} Optional. Callback function
Get a list of all outputs
Arguments:
- callback: {Function} Optional. Callback function
Create an output
Arguments:
- parameters: {Object} {CreateOutputRequest}
- callback: {Function} Optional. Callback function
Get all available output modules
Arguments:
- callback: {Function} Optional. Callback function
Update output
Arguments:
- parameters: {Object} {Map}
- path: {Object}
- outputId: {String} The id of the output that should be deleted
- callback: {Function} Optional. Callback function
Delete output
Arguments:
- parameters: {null}
- path: {Object}
- outputId: {String} The id of the output that should be deleted
- callback: {Function} Optional. Callback function
Get all available user permissions
Arguments:
- callback: {Function} Optional. Callback function
Get the initial permissions assigned to a reader account
Arguments:
- parameters: {null}
- path: {Object}
- username: {String}
- callback: {Function} Optional. Callback function
List all installed plugins on this node
Arguments:
- callback: {Function} Optional. Callback function
Pauses message processing
Arguments:
- callback: {Function} Optional. Callback function
Resume message processing
Arguments:
- callback: {Function} Optional. Callback function
Information about a radio
This is returning information of a radio in context to its state in the cluster. Use the system API of the node itself to get system information
Arguments:
- parameters: {null}
- path: {Object}
- radioId: {String}
- callback: {Function} Optional. Callback function
List all active radios in this cluster
Arguments:
- callback: {Function} Optional. Callback function
Register input of a radio
Radio inputs register their own inputs here for persistence after they successfully launched it
Arguments:
- parameters: {Object} {RegisterInputRequest}
- path: {Object}
- radioId: {String}
- callback: {Function} Optional. Callback function
Persisted inputs of a radio
This is returning the configured persisted inputs of a radio node. This is not returning the actually running inputs on a radio node. Radio nodes use this resource to get their configured inputs on startup
Arguments:
- parameters: {null}
- path: {Object}
- radioId: {String}
- callback: {Function} Optional. Callback function
Unregister input of a radio
Radios unregister their inputs when they are stopped/terminated on the radio
Arguments:
- parameters: {null}
- path: {Object}
- radioId: {String}
- inputId: {String}
- callback: {Function} Optional. Callback function
Ping - Accepts pings of graylog2-radio nodes
Every graylog2-radio node is regularly pinging to announce that it is active
Arguments:
- parameters: {Object} {PingRequest}
- path: {Object}
- radioId: {String}
- callback: {Function} Optional. Callback function
List current status of ServiceManager
Arguments:
- callback: {Function} Optional. Callback function
This request creates a new session for a user or reactivates an existing session: the equivalent of logging in
Arguments:
- parameters: {Object}
- Login request {SessionCreateRequest} Username and credentials
- callback: {Function} Optional. Callback function
Terminate an existing session
Destroys the session with the given ID: the equivalent of logging out
Arguments:
- parameters: {null}
- path: {Object}
- sessionId: {String}
- callback: {Function} Optional. Callback function
Shutdown this node gracefully
Attempts at no new messages are accepted
Arguments:
- callback: {Function} Optional. Callback function
System o this node
This resource returns information about the system this node is running on
Arguments:
- callback: {Function} Optional. Callback function
Filesystem o this node
This resource returns information about the filesystems of this node
Arguments:
- callback: {Function} Optional. Callback function
JVM information o this node
This resource returns information about the Java Virtual Machine of this node
Arguments:
- callback: {Function} Optional. Callback function
Networking o this node
This resource returns information about the networking system this node is running with
Arguments:
- callback: {Function} Optional. Callback function
OS information o this node
This resource returns information about the operating system this node is running on
Arguments:
- callback: {Function} Optional. Callback function
Process information about this node
This irunning as
Arguments:
- callback: {Function} Optional. Callback function
Current throughput of this node in messages per second
Arguments:
- callback: {Function} Optional. Callback function
Get user details
The user's permissions are only included if a user asks for his own account or for users with the necessary permissions to edit permissions
Arguments:
- parameters: {null}
- path: {Object}
- username: {String} The username to return information for
- callback: {Function} Optional. Callback function
Lurs
The permissions assigned to the users are always included
Arguments:
- callback: {Function} Optional. Callback function
Create a new user account
Arguments:
- parameters: {Object} {CreateUserRequest} Must contain username, full_name, email, password and a list of permissionsteUserRequest'
- callback: {Function} Optional. Callback function
Modify user details
Arguments:
- parameters: {Object} {ChangeUserRequest} Updated user information
- path: {Object}
- username: {String} The name of the user to modify
- callback: {Function} Optional. Callback function
Removes a user account
Arguments:
- parameters: {null}
- path: {Object}
- username: {String} The name of the user to delete
- callback: {Function} Optional. Callback function
Update the password for a user
Arguments:
- parameters: {Object} {ChangePasswordRequest} The old and new passwords
- path: {Object}
- username: {String} The name of the user whose password to change
- callback: {Function} Optional. Callback function
Update a user's permission set
Arguments:
- parameters: {Object} {PermissionEditRequest} The list of permissions to assign to the user
- path: {Object}
- username: {String} The name of the user to modify
- callback: {Function} Optional. Callback function
Revoke all permissions for a user without deleting the account
Arguments:
- parameters: {null}
- path: {Object}
- username: {String} The name of the user to modify
- callback: {Function} Optional. Callback function
Update a user's preferences set
Arguments:
- parameters: {Object} {UpdateUserPreferences} The map of preferences to assign to the user
- path: {Object}
- username: {String} The name of the user to modify
- callback: {Function} Optional. Callback function
Retrieves the list of access tokens for a user
Arguments:
- parameters: {null}
- path: {Object}
- username: {String}
- callback: {Function} Optional. Callback function
Generates a new access token for a user
Arguments:
- parameters: {null}
- path: {Object}
- username: {String}
- name: {String} Descriptive name for this token (e.g. "cronjob")
- callback: {Function} Optional. Callback function
Removes a token for a user
Arguments:
- parameters: {null}
- path: {Object}
- username: {String}
- access: token {String}
- callback: {Function} Optional. Callback function
The MIT License (MIT)
Copyright (c) 2015 Andrii Kolomiichenko ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.