forked from kedacore/keda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: circa10a <[email protected]> Signed-off-by: Caleb Lemoine <[email protected]> Signed-off-by: uucloud <[email protected]>
- Loading branch information
Showing
7 changed files
with
956 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package splunk | ||
|
||
import ( | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"net/url" | ||
"strconv" | ||
"strings" | ||
"time" | ||
|
||
"github.com/kedacore/keda/v2/pkg/scalers/scalersconfig" | ||
kedautil "github.com/kedacore/keda/v2/pkg/util" | ||
) | ||
|
||
const ( | ||
savedSearchPathTemplateStr = "/servicesNS/%s/search/search/jobs/export" | ||
) | ||
|
||
// Config contains the information required to authenticate with a Splunk instance. | ||
type Config struct { | ||
Host string | ||
Username string | ||
Password string | ||
APIToken string | ||
HTTPTimeout time.Duration | ||
UnsafeSsl bool | ||
} | ||
|
||
// Client contains Splunk config information as well as an http client for requests. | ||
type Client struct { | ||
*Config | ||
*http.Client | ||
} | ||
|
||
// SearchResponse is used for unmarshalling search results. | ||
type SearchResponse struct { | ||
Result map[string]string `json:"result"` | ||
} | ||
|
||
// NewClient returns a new Splunk client. | ||
func NewClient(c *Config, sc *scalersconfig.ScalerConfig) (*Client, error) { | ||
if c.Username == "" { | ||
return nil, errors.New("username was not set") | ||
} | ||
|
||
if c.APIToken != "" && c.Password != "" { | ||
return nil, errors.New("API token and Password were all set. If APIToken is set, username and password must not be used") | ||
} | ||
|
||
httpClient := kedautil.CreateHTTPClient(sc.GlobalHTTPTimeout, c.UnsafeSsl) | ||
|
||
client := &Client{ | ||
c, | ||
httpClient, | ||
} | ||
|
||
return client, nil | ||
} | ||
|
||
// SavedSearch fetches the results of a saved search/report in Splunk. | ||
func (c *Client) SavedSearch(name string) (*SearchResponse, error) { | ||
savedSearchAPIPath := fmt.Sprintf(savedSearchPathTemplateStr, c.Username) | ||
endpoint := fmt.Sprintf("%s%s", c.Host, savedSearchAPIPath) | ||
|
||
body := strings.NewReader(fmt.Sprintf("search=savedsearch %s", name)) | ||
req, err := http.NewRequest(http.MethodPost, endpoint, body) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
req.Header.Add("Content-Type", "application/x-www-form-urlencoded") | ||
if c.APIToken != "" { | ||
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", c.APIToken)) | ||
} else { | ||
req.SetBasicAuth(c.Username, c.Password) | ||
} | ||
|
||
req.URL.RawQuery = url.Values{ | ||
"output_mode": {"json"}, | ||
}.Encode() | ||
|
||
resp, err := c.Client.Do(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
defer resp.Body.Close() | ||
|
||
if resp.StatusCode > 399 { | ||
bodyText, err := io.ReadAll(resp.Body) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return nil, errors.New(string(bodyText)) | ||
} | ||
|
||
result := &SearchResponse{} | ||
|
||
err = json.NewDecoder(resp.Body).Decode(&result) | ||
|
||
return result, err | ||
} | ||
|
||
// ToMetric converts a search response to a consumable metric value. | ||
func (s *SearchResponse) ToMetric(valueField string) (float64, error) { | ||
metricValueStr, ok := s.Result[valueField] | ||
if !ok { | ||
return 0, fmt.Errorf("field: %s not found in search results", valueField) | ||
} | ||
|
||
metricValueInt, err := strconv.ParseFloat(metricValueStr, 64) | ||
if err != nil { | ||
return 0, fmt.Errorf("value: %s is not a float value", valueField) | ||
} | ||
|
||
return metricValueInt, nil | ||
} |
Oops, something went wrong.