* Unit tests for backend * minor change * Implemented querNumericItems in backend * Added query type * Set alerting to true * Return TimeSeries from History * Updated alerting feature * Fix params marshal error * Fix params more * Update zabbixAPIConnector.js * Numbers, I guess * Params Output Type * Output marshaling * Unmarshal and decoder error catch * HistoryPoint and Unmarshal fixes * Unmarshal to History * Revert "Update zabbixAPIConnector.js" This reverts commit e0ffdff859b6f920893a47a709493f8076e38ef4. * Fix unmarshaling for real * Time range integer * Use more zabbix.Items * Update response_models.go * Update zabbix_api.go * Update models.go * Update zabbix_api.go * Tests * Adding more unit tests and cleaning up additional logging * Make history request param a pointer * Actually store datasource in cache * Debug logs and timings * Handle panics gracefully * Updated Regex filter parsing * Removed must compile * Clean up regex filter
692 lines
20 KiB
Go
692 lines
20 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/tls"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"math"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"regexp"
|
|
"time"
|
|
|
|
"github.com/alexanderzobnin/grafana-zabbix/pkg/zabbix"
|
|
simplejson "github.com/bitly/go-simplejson"
|
|
"github.com/grafana/grafana_plugin_model/go/datasource"
|
|
hclog "github.com/hashicorp/go-hclog"
|
|
"golang.org/x/net/context"
|
|
"golang.org/x/net/context/ctxhttp"
|
|
)
|
|
|
|
// ZabbixDatasource stores state about a specific datasource and provides methods to make
|
|
// requests to the Zabbix API
|
|
type ZabbixDatasource struct {
|
|
queryCache *Cache
|
|
logger hclog.Logger
|
|
httpClient *http.Client
|
|
authToken string
|
|
}
|
|
|
|
type categories struct {
|
|
Transform []map[string]interface{}
|
|
Aggregate []map[string]interface{}
|
|
Filter []map[string]interface{}
|
|
Trends []map[string]interface{}
|
|
Time []map[string]interface{}
|
|
Alias []map[string]interface{}
|
|
Special []map[string]interface{}
|
|
}
|
|
|
|
// NewZabbixDatasource returns an initialized ZabbixDatasource
|
|
func NewZabbixDatasource() *ZabbixDatasource {
|
|
return &ZabbixDatasource{
|
|
queryCache: NewCache(10*time.Minute, 10*time.Minute),
|
|
httpClient: &http.Client{
|
|
Transport: &http.Transport{
|
|
TLSClientConfig: &tls.Config{
|
|
Renegotiation: tls.RenegotiateFreelyAsClient,
|
|
},
|
|
Proxy: http.ProxyFromEnvironment,
|
|
Dial: (&net.Dialer{
|
|
Timeout: 30 * time.Second,
|
|
KeepAlive: 30 * time.Second,
|
|
}).Dial,
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
MaxIdleConns: 100,
|
|
IdleConnTimeout: 90 * time.Second,
|
|
},
|
|
Timeout: time.Duration(time.Second * 30),
|
|
},
|
|
}
|
|
}
|
|
|
|
// ZabbixAPIQuery handles query requests to Zabbix
|
|
func (ds *ZabbixDatasource) ZabbixAPIQuery(ctx context.Context, tsdbReq *datasource.DatasourceRequest) (*datasource.DatasourceResponse, error) {
|
|
result, queryExistInCache := ds.queryCache.Get(HashString(tsdbReq.String()))
|
|
|
|
if !queryExistInCache {
|
|
dsInfo := tsdbReq.GetDatasource()
|
|
|
|
queries := []requestModel{}
|
|
for _, query := range tsdbReq.Queries {
|
|
req := requestModel{}
|
|
err := json.Unmarshal([]byte(query.GetModelJson()), &req)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
queries = append(queries, req)
|
|
}
|
|
|
|
if len(queries) == 0 {
|
|
return nil, errors.New("At least one query should be provided")
|
|
}
|
|
|
|
query := queries[0].Target
|
|
var err error
|
|
result, err = ds.ZabbixRequest(ctx, dsInfo, query.Method, query.Params)
|
|
ds.queryCache.Set(HashString(tsdbReq.String()), result)
|
|
if err != nil {
|
|
ds.logger.Debug("ZabbixAPIQuery", "error", err)
|
|
return nil, errors.New("ZabbixAPIQuery is not implemented yet")
|
|
}
|
|
}
|
|
|
|
return BuildResponse(result)
|
|
}
|
|
|
|
// TestConnection checks authentication and version of the Zabbix API and returns that info
|
|
func (ds *ZabbixDatasource) TestConnection(ctx context.Context, tsdbReq *datasource.DatasourceRequest) (*datasource.DatasourceResponse, error) {
|
|
dsInfo := tsdbReq.GetDatasource()
|
|
|
|
auth, err := ds.loginWithDs(ctx, dsInfo)
|
|
if err != nil {
|
|
return BuildErrorResponse(fmt.Errorf("Authentication failed: %s", err)), nil
|
|
}
|
|
ds.authToken = auth
|
|
|
|
response, err := ds.zabbixAPIRequest(ctx, dsInfo.GetUrl(), "apiinfo.version", zabbixParams{}, "")
|
|
if err != nil {
|
|
ds.logger.Debug("TestConnection", "error", err)
|
|
return BuildErrorResponse(fmt.Errorf("Version check failed: %s", err)), nil
|
|
}
|
|
|
|
resultByte, _ := response.MarshalJSON()
|
|
ds.logger.Debug("TestConnection", "result", string(resultByte))
|
|
|
|
testResponse := connectionTestResponse{
|
|
ZabbixVersion: response.MustString(),
|
|
}
|
|
|
|
return BuildResponse(testResponse)
|
|
}
|
|
|
|
// ZabbixRequest checks authentication and makes a request to the Zabbix API
|
|
func (ds *ZabbixDatasource) ZabbixRequest(ctx context.Context, dsInfo *datasource.DatasourceInfo, method string, params zabbixParams) (*simplejson.Json, error) {
|
|
zabbixURL := dsInfo.GetUrl()
|
|
|
|
var result *simplejson.Json
|
|
var err error
|
|
|
|
for attempt := 0; attempt <= 3; attempt++ {
|
|
if ds.authToken == "" {
|
|
// Authenticate
|
|
ds.authToken, err = ds.loginWithDs(ctx, dsInfo)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
result, err = ds.zabbixAPIRequest(ctx, zabbixURL, method, params, ds.authToken)
|
|
if err == nil || (err != nil && !isNotAuthorized(err.Error())) {
|
|
break
|
|
} else {
|
|
ds.authToken = ""
|
|
}
|
|
}
|
|
return result, err
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) loginWithDs(ctx context.Context, dsInfo *datasource.DatasourceInfo) (string, error) {
|
|
zabbixURLStr := dsInfo.GetUrl()
|
|
zabbixURL, err := url.Parse(zabbixURLStr)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
jsonDataStr := dsInfo.GetJsonData()
|
|
jsonData, err := simplejson.NewJson([]byte(jsonDataStr))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
zabbixLogin := jsonData.Get("username").MustString()
|
|
var zabbixPassword string
|
|
if securePassword, exists := dsInfo.GetDecryptedSecureJsonData()["password"]; exists {
|
|
zabbixPassword = securePassword
|
|
} else {
|
|
zabbixPassword = jsonData.Get("password").MustString()
|
|
}
|
|
|
|
auth, err := ds.login(ctx, zabbixURLStr, zabbixLogin, zabbixPassword)
|
|
if err != nil {
|
|
ds.logger.Error("loginWithDs", "error", err)
|
|
return "", err
|
|
}
|
|
ds.logger.Debug("loginWithDs", "url", zabbixURL, "user", zabbixLogin, "auth", auth)
|
|
|
|
return auth, nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) login(ctx context.Context, apiURL string, username string, password string) (string, error) {
|
|
params := zabbixParams{
|
|
User: username,
|
|
Password: password,
|
|
}
|
|
auth, err := ds.zabbixAPIRequest(ctx, apiURL, "user.login", params, "")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return auth.MustString(), nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) zabbixAPIRequest(ctx context.Context, apiURL string, method string, params zabbixParams, auth string) (*simplejson.Json, error) {
|
|
zabbixURL, err := url.Parse(apiURL)
|
|
|
|
// TODO: inject auth token (obtain from 'user.login' first)
|
|
apiRequest := map[string]interface{}{
|
|
"jsonrpc": "2.0",
|
|
"id": 2,
|
|
"method": method,
|
|
"params": params,
|
|
}
|
|
|
|
if auth != "" {
|
|
apiRequest["auth"] = auth
|
|
}
|
|
|
|
reqBodyJSON, err := json.Marshal(apiRequest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var body io.Reader
|
|
body = bytes.NewReader(reqBodyJSON)
|
|
rc, ok := body.(io.ReadCloser)
|
|
if !ok && body != nil {
|
|
rc = ioutil.NopCloser(body)
|
|
}
|
|
|
|
req := &http.Request{
|
|
Method: "POST",
|
|
URL: zabbixURL,
|
|
Header: map[string][]string{
|
|
"Content-Type": {"application/json"},
|
|
},
|
|
Body: rc,
|
|
}
|
|
|
|
tStart := time.Now()
|
|
response, err := makeHTTPRequest(ctx, ds.httpClient, req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
requestTime := time.Now().Sub(tStart)
|
|
ds.logger.Debug("Response from Zabbix Request", "method", method, "requestTime", requestTime)
|
|
|
|
return handleAPIResult(response)
|
|
}
|
|
|
|
func handleAPIResult(response []byte) (*simplejson.Json, error) {
|
|
jsonResp, err := simplejson.NewJson([]byte(response))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if errJSON, isError := jsonResp.CheckGet("error"); isError {
|
|
errMessage := fmt.Sprintf("%s %s", errJSON.Get("message").MustString(), errJSON.Get("data").MustString())
|
|
return nil, errors.New(errMessage)
|
|
}
|
|
jsonResult := jsonResp.Get("result")
|
|
return jsonResult, nil
|
|
}
|
|
|
|
func makeHTTPRequest(ctx context.Context, httpClient *http.Client, req *http.Request) ([]byte, error) {
|
|
res, err := ctxhttp.Do(ctx, httpClient, req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer res.Body.Close()
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
return nil, fmt.Errorf("invalid status code. status: %v", res.Status)
|
|
}
|
|
|
|
body, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return body, nil
|
|
}
|
|
|
|
func isNotAuthorized(message string) bool {
|
|
return message == "Session terminated, re-login, please." ||
|
|
message == "Not authorised." ||
|
|
message == "Not authorized."
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) queryNumericItems(ctx context.Context, tsdbReq *datasource.DatasourceRequest) (*datasource.DatasourceResponse, error) {
|
|
tStart := time.Now()
|
|
jsonQueries := make([]*simplejson.Json, 0)
|
|
for _, query := range tsdbReq.Queries {
|
|
json, err := simplejson.NewJson([]byte(query.ModelJson))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
jsonQueries = append(jsonQueries, json)
|
|
}
|
|
|
|
if len(jsonQueries) == 0 {
|
|
return nil, errors.New("At least one query should be provided")
|
|
}
|
|
|
|
firstQuery := jsonQueries[0]
|
|
|
|
groupFilter := firstQuery.GetPath("group", "filter").MustString()
|
|
hostFilter := firstQuery.GetPath("host", "filter").MustString()
|
|
appFilter := firstQuery.GetPath("application", "filter").MustString()
|
|
itemFilter := firstQuery.GetPath("item", "filter").MustString()
|
|
|
|
ds.logger.Debug("queryNumericItems",
|
|
"func", "ds.getItems",
|
|
"groupFilter", groupFilter,
|
|
"hostFilter", hostFilter,
|
|
"appFilter", appFilter,
|
|
"itemFilter", itemFilter)
|
|
items, err := ds.getItems(ctx, tsdbReq.GetDatasource(), groupFilter, hostFilter, appFilter, itemFilter, "num")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ds.logger.Debug("queryNumericItems", "finished", "ds.getItems", "timeElapsed", time.Now().Sub(tStart))
|
|
|
|
metrics, err := ds.queryNumericDataForItems(ctx, tsdbReq, items, jsonQueries, isUseTrend(tsdbReq.GetTimeRange()))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ds.logger.Debug("queryNumericItems", "finished", "queryNumericDataForItems", "timeElapsed", time.Now().Sub(tStart))
|
|
|
|
return BuildMetricsResponse(metrics)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getItems(ctx context.Context, dsInfo *datasource.DatasourceInfo, groupFilter string, hostFilter string, appFilter string, itemFilter string, itemType string) (zabbix.Items, error) {
|
|
tStart := time.Now()
|
|
|
|
hosts, err := ds.getHosts(ctx, dsInfo, groupFilter, hostFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var hostids []string
|
|
for _, k := range hosts {
|
|
hostids = append(hostids, k["hostid"].(string))
|
|
}
|
|
ds.logger.Debug("getItems", "finished", "getHosts", "timeElapsed", time.Now().Sub(tStart))
|
|
|
|
apps, err := ds.getApps(ctx, dsInfo, groupFilter, hostFilter, appFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var appids []string
|
|
for _, l := range apps {
|
|
appids = append(appids, l["applicationid"].(string))
|
|
}
|
|
ds.logger.Debug("getItems", "finished", "getApps", "timeElapsed", time.Now().Sub(tStart))
|
|
|
|
var allItems *simplejson.Json
|
|
if len(hostids) > 0 {
|
|
ds.logger.Debug("getAllItems", "with", "hostFilter")
|
|
allItems, err = ds.getAllItems(ctx, dsInfo, hostids, nil, itemType)
|
|
} else if len(appids) > 0 {
|
|
ds.logger.Debug("getAllItems", "with", "appFilter")
|
|
allItems, err = ds.getAllItems(ctx, dsInfo, nil, appids, itemType)
|
|
}
|
|
ds.logger.Debug("getItems", "finished", "getAllItems", "timeElapsed", time.Now().Sub(tStart))
|
|
|
|
var items zabbix.Items
|
|
|
|
if allItems == nil {
|
|
items = zabbix.Items{}
|
|
} else {
|
|
itemsJSON, err := allItems.MarshalJSON()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = json.Unmarshal(itemsJSON, &items)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
re, err := parseFilter(itemFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
filteredItems := zabbix.Items{}
|
|
for _, item := range items {
|
|
if item.Status == "0" {
|
|
if re != nil {
|
|
if re.MatchString(item.Name) {
|
|
filteredItems = append(filteredItems, item)
|
|
}
|
|
} else if item.Name == itemFilter {
|
|
filteredItems = append(filteredItems, item)
|
|
}
|
|
}
|
|
}
|
|
ds.logger.Debug("getItems", "found", len(items), "matches", len(filteredItems))
|
|
ds.logger.Debug("getItems", "totalTimeTaken", time.Now().Sub(tStart))
|
|
return filteredItems, nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getApps(ctx context.Context, dsInfo *datasource.DatasourceInfo, groupFilter string, hostFilter string, appFilter string) ([]map[string]interface{}, error) {
|
|
hosts, err := ds.getHosts(ctx, dsInfo, groupFilter, hostFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var hostids []string
|
|
for _, k := range hosts {
|
|
hostids = append(hostids, k["hostid"].(string))
|
|
}
|
|
allApps, err := ds.getAllApps(ctx, dsInfo, hostids)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
re, err := parseFilter(appFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var apps []map[string]interface{}
|
|
for _, i := range allApps.MustArray() {
|
|
name := i.(map[string]interface{})["name"].(string)
|
|
if re != nil {
|
|
if re.MatchString(name) {
|
|
apps = append(apps, i.(map[string]interface{}))
|
|
}
|
|
} else if name == appFilter {
|
|
apps = append(apps, i.(map[string]interface{}))
|
|
}
|
|
}
|
|
ds.logger.Debug("getapps", "found", len(allApps.MustArray()), "matches", len(apps))
|
|
return apps, nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getHosts(ctx context.Context, dsInfo *datasource.DatasourceInfo, groupFilter string, hostFilter string) ([]map[string]interface{}, error) {
|
|
groups, err := ds.getGroups(ctx, dsInfo, groupFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var groupids []string
|
|
for _, k := range groups {
|
|
groupids = append(groupids, k["groupid"].(string))
|
|
}
|
|
allHosts, err := ds.getAllHosts(ctx, dsInfo, groupids)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
re, err := parseFilter(hostFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var hosts []map[string]interface{}
|
|
for _, i := range allHosts.MustArray() {
|
|
name := i.(map[string]interface{})["name"].(string)
|
|
if re != nil {
|
|
if re.MatchString(name) {
|
|
hosts = append(hosts, i.(map[string]interface{}))
|
|
}
|
|
} else if name == hostFilter {
|
|
hosts = append(hosts, i.(map[string]interface{}))
|
|
}
|
|
|
|
}
|
|
ds.logger.Debug("getHosts", "found", len(allHosts.MustArray()), "matches", len(hosts))
|
|
return hosts, nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getGroups(ctx context.Context, dsInfo *datasource.DatasourceInfo, groupFilter string) ([]map[string]interface{}, error) {
|
|
allGroups, err := ds.getAllGroups(ctx, dsInfo)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
re, err := parseFilter(groupFilter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var groups []map[string]interface{}
|
|
for _, i := range allGroups.MustArray() {
|
|
name := i.(map[string]interface{})["name"].(string)
|
|
if re != nil {
|
|
if re.MatchString(name) {
|
|
groups = append(groups, i.(map[string]interface{}))
|
|
}
|
|
} else if name == groupFilter {
|
|
groups = append(groups, i.(map[string]interface{}))
|
|
}
|
|
}
|
|
return groups, nil
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getAllItems(ctx context.Context, dsInfo *datasource.DatasourceInfo, hostids []string, appids []string, itemtype string) (*simplejson.Json, error) {
|
|
params := zabbixParams{
|
|
Output: &zabbixParamOutput{Fields: []string{"itemid", "name", "key_", "value_type", "hostid", "status", "state"}},
|
|
SortField: "name",
|
|
WebItems: true,
|
|
Filter: map[string][]int{},
|
|
SelectHosts: []string{"hostid", "name"},
|
|
HostIDs: hostids,
|
|
AppIDs: appids,
|
|
}
|
|
|
|
if itemtype == "num" {
|
|
params.Filter["value_type"] = []int{0, 3}
|
|
} else if itemtype == "text" {
|
|
params.Filter["value_type"] = []int{1, 2, 4}
|
|
}
|
|
|
|
return ds.ZabbixRequest(ctx, dsInfo, "item.get", params)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getAllApps(ctx context.Context, dsInfo *datasource.DatasourceInfo, hostids []string) (*simplejson.Json, error) {
|
|
params := zabbixParams{Output: &zabbixParamOutput{Mode: "extend"}, HostIDs: hostids}
|
|
|
|
return ds.ZabbixRequest(ctx, dsInfo, "application.get", params)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getAllHosts(ctx context.Context, dsInfo *datasource.DatasourceInfo, groupids []string) (*simplejson.Json, error) {
|
|
params := zabbixParams{Output: &zabbixParamOutput{Fields: []string{"name", "host"}}, SortField: "name", GroupIDs: groupids}
|
|
|
|
return ds.ZabbixRequest(ctx, dsInfo, "host.get", params)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getAllGroups(ctx context.Context, dsInfo *datasource.DatasourceInfo) (*simplejson.Json, error) {
|
|
params := zabbixParams{Output: &zabbixParamOutput{Fields: []string{"name"}}, SortField: "name", RealHosts: true}
|
|
|
|
return ds.ZabbixRequest(ctx, dsInfo, "hostgroup.get", params)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) queryNumericDataForItems(ctx context.Context, tsdbReq *datasource.DatasourceRequest, items zabbix.Items, jsonQueries []*simplejson.Json, useTrend bool) ([]*datasource.TimeSeries, error) {
|
|
valueType := ds.getTrendValueType(jsonQueries)
|
|
consolidateBy := ds.getConsolidateBy(jsonQueries)
|
|
|
|
if consolidateBy == "" {
|
|
consolidateBy = valueType
|
|
}
|
|
|
|
history, err := ds.getHistotyOrTrend(ctx, tsdbReq, items, useTrend)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return convertHistory(history, items)
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getTrendValueType(jsonQueries []*simplejson.Json) string {
|
|
var trendFunctions []string
|
|
var trendValueFunc string
|
|
|
|
// TODO: loop over populated categories
|
|
for _, j := range new(categories).Trends {
|
|
trendFunctions = append(trendFunctions, j["name"].(string))
|
|
}
|
|
for _, k := range jsonQueries[0].Get("functions").MustArray() {
|
|
for _, j := range trendFunctions {
|
|
if j == k.(map[string]interface{})["def"].(map[string]interface{})["name"] {
|
|
trendValueFunc = j
|
|
}
|
|
}
|
|
}
|
|
|
|
if trendValueFunc == "" {
|
|
trendValueFunc = "avg"
|
|
}
|
|
|
|
return trendValueFunc
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getConsolidateBy(jsonQueries []*simplejson.Json) string {
|
|
var consolidateBy string
|
|
|
|
for _, k := range jsonQueries[0].Get("functions").MustArray() {
|
|
if k.(map[string]interface{})["def"].(map[string]interface{})["name"] == "consolidateBy" {
|
|
defParams := k.(map[string]interface{})["def"].(map[string]interface{})["params"].([]interface{})
|
|
if len(defParams) > 0 {
|
|
consolidateBy = defParams[0].(string)
|
|
}
|
|
}
|
|
}
|
|
return consolidateBy
|
|
}
|
|
|
|
func (ds *ZabbixDatasource) getHistotyOrTrend(ctx context.Context, tsdbReq *datasource.DatasourceRequest, items zabbix.Items, useTrend bool) (zabbix.History, error) {
|
|
allHistory := zabbix.History{}
|
|
|
|
timeRange := tsdbReq.GetTimeRange()
|
|
groupedItems := map[int]zabbix.Items{}
|
|
|
|
for _, j := range items {
|
|
groupedItems[j.ValueType] = append(groupedItems[j.ValueType], j)
|
|
}
|
|
|
|
for k, l := range groupedItems {
|
|
var itemids []string
|
|
for _, m := range l {
|
|
itemids = append(itemids, m.ID)
|
|
}
|
|
|
|
params := zabbixParams{
|
|
Output: &zabbixParamOutput{Mode: "extend"},
|
|
SortField: "clock",
|
|
SortOrder: "ASC",
|
|
ItemIDs: itemids,
|
|
TimeFrom: timeRange.GetFromEpochMs() / 1000,
|
|
TimeTill: timeRange.GetToEpochMs() / 1000,
|
|
}
|
|
|
|
var response *simplejson.Json
|
|
var err error
|
|
if useTrend {
|
|
response, err = ds.ZabbixRequest(ctx, tsdbReq.GetDatasource(), "trend.get", params)
|
|
} else {
|
|
params.History = &k
|
|
response, err = ds.ZabbixRequest(ctx, tsdbReq.GetDatasource(), "history.get", params)
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pointJSON, err := response.MarshalJSON()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Internal error parsing response JSON: %w", err)
|
|
}
|
|
|
|
history := zabbix.History{}
|
|
err = json.Unmarshal(pointJSON, &history)
|
|
if err != nil {
|
|
ds.logger.Warn(fmt.Sprintf("Could not map Zabbix response to History: %s", err.Error()))
|
|
} else {
|
|
allHistory = append(allHistory, history...)
|
|
}
|
|
}
|
|
return allHistory, nil
|
|
}
|
|
|
|
func isUseTrend(timeRange *datasource.TimeRange) bool {
|
|
fromSec := timeRange.GetFromEpochMs() / 1000
|
|
toSec := timeRange.GetToEpochMs() / 1000
|
|
if (fromSec < time.Now().Add(time.Hour*-7*24).Unix()) ||
|
|
(toSec-fromSec > (4 * 24 * time.Hour).Milliseconds()) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func convertHistory(history zabbix.History, items zabbix.Items) ([]*datasource.TimeSeries, error) {
|
|
seriesMap := map[string]*datasource.TimeSeries{}
|
|
|
|
for _, item := range items {
|
|
seriesMap[item.ID] = &datasource.TimeSeries{
|
|
Name: fmt.Sprintf("%s %s", item.Hosts[0].Name, item.Name),
|
|
Points: []*datasource.Point{},
|
|
}
|
|
}
|
|
|
|
for _, point := range history {
|
|
seriesMap[point.ItemID].Points = append(seriesMap[point.ItemID].Points, &datasource.Point{
|
|
Timestamp: point.Clock*1000 + int64(math.Round(float64(point.NS)/1000000)),
|
|
Value: point.Value,
|
|
})
|
|
}
|
|
|
|
seriesList := []*datasource.TimeSeries{}
|
|
for _, series := range seriesMap {
|
|
seriesList = append(seriesList, series)
|
|
}
|
|
return seriesList, nil
|
|
}
|
|
|
|
func parseFilter(filter string) (*regexp.Regexp, error) {
|
|
regex := regexp.MustCompile(`^/(.+)/(.*)$`)
|
|
flagRE := regexp.MustCompile("[imsU]+")
|
|
|
|
matches := regex.FindStringSubmatch(filter)
|
|
if len(matches) <= 1 {
|
|
return nil, nil
|
|
}
|
|
|
|
pattern := ""
|
|
if matches[2] != "" {
|
|
if flagRE.MatchString(matches[2]) {
|
|
pattern += "(?" + matches[2] + ")"
|
|
} else {
|
|
return nil, fmt.Errorf("error parsing regexp: unsupported flags `%s` (expected [imsU])", matches[2])
|
|
}
|
|
}
|
|
pattern += matches[1]
|
|
|
|
return regexp.Compile(pattern)
|
|
}
|