1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"github.com/newrelic/go-agent/v3/internal"
)
func fail(reason string) {
fmt.Println(reason)
os.Exit(1)
}
func main() {
if len(os.Args) < 3 {
fail("improper usage: ./rules path/to/reply_file input")
}
connectReplyFile := os.Args[1]
name := os.Args[2]
data, err := ioutil.ReadFile(connectReplyFile)
if nil != err {
fail(fmt.Sprintf("unable to open '%s': %s", connectReplyFile, err))
}
var reply internal.ConnectReply
err = json.Unmarshal(data, &reply)
if nil != err {
fail(fmt.Sprintf("unable unmarshal reply: %s", err))
}
// Metric Rules
out := reply.MetricRules.Apply(name)
fmt.Println("metric rules applied:", out)
// Url Rules + Txn Name Rules + Segment Term Rules
out = internal.CreateFullTxnName(name, &reply, true)
fmt.Println("treated as web txn name:", out)
out = internal.CreateFullTxnName(name, &reply, false)
fmt.Println("treated as backround txn name:", out)
}
|