ntlm-response

command module
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2021 License: MIT Imports: 18 Imported by: 0

README

ntlm-response

An NTLM site checker for telegraf with output modeled after the http_response plugin. This is designed to work with the telegraf exec plugin.

Configuration:

{
    "urls": [
        "https://www.google.com"
    ],
    "http_proxy": "",
    "response_timeout": 5000,
    "method": "get",
    "username": "domain\\username",
    "password": "password",
    "workstation": "",
    "body": "",
    "response_body_field": "",
    "response_body_max_size": "",
    "response_string_match": "",
    "response_status_code": 0,
    "headers": {
        "Host": "githubcom"
    },
    "http_header_metrics": {
        "HTTP_HEADER": "INTEGER_METRIC_NAME_i",
        "HTTP_HEADER": "STRING_METRIC_NAME_s",
        "HTTP_HEADER": "FLOAT_METRIC_NAME"
    },
    "http_header_tags": {
        "HTTP_HEADER": "TAG_NAME"
    }
}

Metrics:

ntlm_response
    tags:
        server (target URL)
        method (request method)
        status_code (response status code)
        result (see below)
    fields:
        response_time (float, seconds)
        content_length (int, response body length)
        response_string_match (int, 0 = mismatch / body read error, 1 = match)
        response_status_code_match (int, 0 = mismatch, 1 = match)
        http_response_code (int, response status code)
        result_code (int, see below)
result / result_code

Upon finishing polling the target server, the plugin registers the result of the operation in the result tag, and adds a numeric field called result_code corresponding with that tag value.

This tag is used to expose network and plugin errors. HTTP errors are considered a successful connection.

Tag value Corresponding field value Description
success 0 The HTTP request completed, even if the HTTP code represents an error
response_string_mismatch 1 The option response_string_match was used, and the body of the response didn't match the regex.
body_read_error 2 The option response_string_match was used, but the plugin wasn't able to read the body of the response.
connection_failed 3 Catch all for any network error not specifically handled by the plugin
timeout 4 The plugin timed out while awaiting the HTTP connection to complete
dns_error 5 There was a DNS error while attempting to connect to the host (not returned)
response_status_code_mismatch 6 The option response_status_code_match was used, and the status code of the response didn't

Additions from http_response

This does have one addition that is missing from http_response. It will allow you to specify optional header fields to return as metrics - as well as tags. This is intended for servers like SharePoint which will return some metrics in their http response headers. This is done using the http_header_metrics mapping. To specify the metric type (integer, string or float) simply add the appropriate suffix to the metric name. This will be removed when the metrics are returned.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL