File: object.go

package info (click to toggle)
mtail 3.0.0~rc50-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,324 kB
  • sloc: yacc: 617; makefile: 233; sh: 104; lisp: 77; awk: 17
file content (18 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Google Inc. All Rights Reserved.
// This file is available under the Apache license.

package code

import (
	"regexp"

	"github.com/google/mtail/internal/metrics"
)

// Object is the data and bytecode resulting from compiled program source.
type Object struct {
	Program []Instr           // The program bytecode.
	Strings []string          // Static strings.
	Regexps []*regexp.Regexp  // Static regular expressions.
	Metrics []*metrics.Metric // Metrics accessible to this program.
}