summaryrefslogtreecommitdiff
path: root/internal/mapr/logformat/mimecast.go
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2023-09-08 07:45:51 +0300
committerPaul Buetow <pbuetow@mimecast.com>2023-09-08 07:45:51 +0300
commit85780654df870dc4170b93a8ed5a5dbfa917fe5d (patch)
tree1d2843e212def6bcdead71ef8c814e8cf55f31a5 /internal/mapr/logformat/mimecast.go
parent51747cc62ae47af7d369e3e43d41f156835e9dfa (diff)
parentd6efc889f1dc9582ba8006633376c022c945a126 (diff)
Merge branch 'develop'
Diffstat (limited to 'internal/mapr/logformat/mimecast.go')
-rw-r--r--internal/mapr/logformat/mimecast.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/internal/mapr/logformat/mimecast.go b/internal/mapr/logformat/mimecast.go
new file mode 100644
index 0000000..cf6b333
--- /dev/null
+++ b/internal/mapr/logformat/mimecast.go
@@ -0,0 +1,23 @@
+//go:build !proprietary
+// +build !proprietary
+
+package logformat
+
+import "errors"
+
+// ErrMimecastNotAvailable is thrown in the open source version of DTail
+var ErrMimecastNotAvailable error = errors.New("The mimecast logformat is not available in this build of DTail")
+
+type mimecastParser struct{}
+
+func newMimecastParser(hostname, timeZoneName string, timeZoneOffset int) (*mimecastParser, error) {
+ return &mimecastParser{}, ErrMimecastNotAvailable
+}
+
+func newMimecastGenericParser(hostname, timeZoneName string, timeZoneOffset int) (*mimecastParser, error) {
+ return &mimecastParser{}, ErrMimecastNotAvailable
+}
+
+func (p *mimecastParser) MakeFields(maprLine string) (map[string]string, error) {
+ return nil, ErrMimecastNotAvailable
+}