Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix stats for Mattermost and add tests #99

Merged
merged 1 commit into from
Nov 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions outputs/mattermost.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ func newMattermostPayload(falcopayload types.FalcoPayload, config *types.Configu
field.Short = false
field.Value = falcopayload.Time.String()
fields = append(fields, field)

attachment.Footer = "https://github.com/falcosecurity/falcosidekick"
if config.Mattermost.Footer != "" {
attachment.Footer = config.Mattermost.Footer
}
}

attachment.Fallback = falcopayload.Output
Expand Down Expand Up @@ -93,7 +98,8 @@ func newMattermostPayload(falcopayload types.FalcoPayload, config *types.Configu
Text: messageText,
Username: "Falcosidekick",
IconURL: iconURL,
Attachments: attachments}
Attachments: attachments,
}

return s
}
Expand All @@ -102,11 +108,11 @@ func newMattermostPayload(falcopayload types.FalcoPayload, config *types.Configu
func (c *Client) MattermostPost(falcopayload types.FalcoPayload) {
err := c.Post(newMattermostPayload(falcopayload, c.Config))
if err != nil {
c.Stats.Rocketchat.Add("error", 1)
c.Stats.Mattermost.Add("error", 1)
c.PromStats.Outputs.With(map[string]string{"destination": "mattermost", "status": "error"}).Inc()
} else {
c.Stats.Rocketchat.Add("ok", 1)
c.Stats.Mattermost.Add("ok", 1)
c.PromStats.Outputs.With(map[string]string{"destination": "mattermost", "status": "ok"}).Inc()
}
c.Stats.Rocketchat.Add("total", 1)
c.Stats.Mattermost.Add("total", 1)
}
63 changes: 63 additions & 0 deletions outputs/mattermost_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package outputs

import (
"encoding/json"
"reflect"
"testing"
"text/template"

"github.com/falcosecurity/falcosidekick/types"
)

func TestMattermostPayload(t *testing.T) {
expectedOutput := slackPayload{
Text: "Rule: Test rule Priority: Debug",
Username: "Falcosidekick",
IconURL: "https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick.png",
Attachments: []slackAttachment{
{
Fallback: "This is a test from falcosidekick",
Color: "#ccfff2",
Text: "This is a test from falcosidekick",
Footer: "https://github.com/falcosecurity/falcosidekick",
Fields: []slackAttachmentField{
{
Title: "proc.name",
Value: "falcosidekick",
Short: true,
},
{
Title: "rule",
Value: "Test rule",
Short: true,
},
{
Title: "priority",
Value: "Debug",
Short: true,
},
{
Title: "time",
Value: "2001-01-01 01:10:00 +0000 UTC",
Short: false,
},
},
},
},
}

var f types.FalcoPayload
json.Unmarshal([]byte(falcoTestInput), &f)
config := &types.Configuration{
Mattermost: types.MattermostOutputConfig{
Username: "Falcosidekick",
Icon: "https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick.png",
},
}

config.Mattermost.MessageFormatTemplate, _ = template.New("").Parse("Rule: {{ .Rule }} Priority: {{ .Priority }}")
output := newMattermostPayload(f, config)
if !reflect.DeepEqual(output, expectedOutput) {
t.Fatalf("\nexpected payload: \n%#v\ngot: \n%#v\n", expectedOutput, output)
}
}
2 changes: 1 addition & 1 deletion outputs/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type slackAttachmentField struct {
Short bool `json:"short"`
}

//Attachment
// Attachment
type slackAttachment struct {
Fallback string `json:"fallback"`
Color string `json:"color"`
Expand Down
10 changes: 5 additions & 5 deletions outputs/slack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ func TestNewSlackPayload(t *testing.T) {
Username: "Falcosidekick",
IconURL: "https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick.png",
Attachments: []slackAttachment{
slackAttachment{
{
Fallback: "This is a test from falcosidekick",
Color: "#ccfff2",
Text: "This is a test from falcosidekick",
Footer: "https://github.com/falcosecurity/falcosidekick",
Fields: []slackAttachmentField{
slackAttachmentField{
{
Title: "proc.name",
Value: "falcosidekick",
Short: true,
},
slackAttachmentField{
{
Title: "rule",
Value: "Test rule",
Short: true,
},
slackAttachmentField{
{
Title: "priority",
Value: "Debug",
Short: true,
},
slackAttachmentField{
{
Title: "time",
Value: "2001-01-01 01:10:00 +0000 UTC",
Short: false,
Expand Down
7 changes: 4 additions & 3 deletions types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type Configuration struct {
ListenPort int
Debug bool
Slack SlackOutputConfig
Mattermost mattermostOutputConfig
Mattermost MattermostOutputConfig
Rocketchat rocketchatOutputConfig
Teams teamsOutputConfig
Datadog datadogOutputConfig
Expand Down Expand Up @@ -67,7 +67,8 @@ type rocketchatOutputConfig struct {
MessageFormatTemplate *template.Template
}

type mattermostOutputConfig struct {
// MattermostOutputConfig represents parameters for Mattermost
type MattermostOutputConfig struct {
WebhookURL string
Footer string
Icon string
Expand Down Expand Up @@ -231,7 +232,7 @@ type Statistics struct {
Dogstatsd *expvar.Map
Webhook *expvar.Map
AzureEventHub *expvar.Map
GCPPubSub *expvar.Map
GCPPubSub *expvar.Map
}

// PromStatistics is a struct to store prometheus metrics
Expand Down