newrelic.insights.Event
Explore with Pulumi AI
Use this resource to create one or more Insights events.
Events
The event
mapping supports the following arguments:
type
- (Required) The event’s name. Can be a combination of alphanumeric characters, underscores, and colons.timestamp
- (Optional) Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.attribute
- (Required) An attribute to include in your event payload. Multiple attribute blocks can be defined for an event. See Attributes below for details.
Attributes
The attribute
mapping supports the following arguments:
key
- (Required) The name of the attribute.value
- (Required) The value of the attribute.type
- (Optional) Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values arestring
,int
, orfloat
. Defaults tostring
.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using NewRelic = Pulumi.NewRelic;
return await Deployment.RunAsync(() =>
{
var foo = new NewRelic.Insights.Event("foo", new()
{
Events = new[]
{
new NewRelic.Insights.Inputs.EventEventArgs
{
Attributes = new[]
{
new NewRelic.Insights.Inputs.EventEventAttributeArgs
{
Key = "a_string_attribute",
Value = "a string",
},
new NewRelic.Insights.Inputs.EventEventAttributeArgs
{
Key = "an_integer_attribute",
Type = "int",
Value = "42",
},
new NewRelic.Insights.Inputs.EventEventAttributeArgs
{
Key = "a_float_attribute",
Type = "float",
Value = "101.1",
},
},
Timestamp = 1232471100,
Type = "MyEvent",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-newrelic/sdk/v5/go/newrelic/insights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := insights.NewEvent(ctx, "foo", &insights.EventArgs{
Events: insights.EventEventArray{
&insights.EventEventArgs{
Attributes: insights.EventEventAttributeArray{
&insights.EventEventAttributeArgs{
Key: pulumi.String("a_string_attribute"),
Value: pulumi.String("a string"),
},
&insights.EventEventAttributeArgs{
Key: pulumi.String("an_integer_attribute"),
Type: pulumi.String("int"),
Value: pulumi.String("42"),
},
&insights.EventEventAttributeArgs{
Key: pulumi.String("a_float_attribute"),
Type: pulumi.String("float"),
Value: pulumi.String("101.1"),
},
},
Timestamp: pulumi.Int(1232471100),
Type: pulumi.String("MyEvent"),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.newrelic.insights.Event;
import com.pulumi.newrelic.insights.EventArgs;
import com.pulumi.newrelic.insights.inputs.EventEventArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Event("foo", EventArgs.builder()
.events(EventEventArgs.builder()
.attributes(
EventEventAttributeArgs.builder()
.key("a_string_attribute")
.value("a string")
.build(),
EventEventAttributeArgs.builder()
.key("an_integer_attribute")
.type("int")
.value(42)
.build(),
EventEventAttributeArgs.builder()
.key("a_float_attribute")
.type("float")
.value(101.1)
.build())
.timestamp(1232471100)
.type("MyEvent")
.build())
.build());
}
}
import pulumi
import pulumi_newrelic as newrelic
foo = newrelic.insights.Event("foo", events=[newrelic.insights.EventEventArgs(
attributes=[
newrelic.insights.EventEventAttributeArgs(
key="a_string_attribute",
value="a string",
),
newrelic.insights.EventEventAttributeArgs(
key="an_integer_attribute",
type="int",
value="42",
),
newrelic.insights.EventEventAttributeArgs(
key="a_float_attribute",
type="float",
value="101.1",
),
],
timestamp=1232471100,
type="MyEvent",
)])
import * as pulumi from "@pulumi/pulumi";
import * as newrelic from "@pulumi/newrelic";
const foo = new newrelic.insights.Event("foo", {events: [{
attributes: [
{
key: "a_string_attribute",
value: "a string",
},
{
key: "an_integer_attribute",
type: "int",
value: "42",
},
{
key: "a_float_attribute",
type: "float",
value: "101.1",
},
],
timestamp: 1232471100,
type: "MyEvent",
}]});
resources:
foo:
type: newrelic:insights:Event
properties:
events:
- attributes:
- key: a_string_attribute
value: a string
- key: an_integer_attribute
type: int
value: 42
- key: a_float_attribute
type: float
value: 101.1
timestamp: 1.2324711e+09
type: MyEvent
Create Event Resource
new Event(name: string, args: EventArgs, opts?: CustomResourceOptions);
@overload
def Event(resource_name: str,
opts: Optional[ResourceOptions] = None,
events: Optional[Sequence[EventEventArgs]] = None)
@overload
def Event(resource_name: str,
args: EventArgs,
opts: Optional[ResourceOptions] = None)
func NewEvent(ctx *Context, name string, args EventArgs, opts ...ResourceOption) (*Event, error)
public Event(string name, EventArgs args, CustomResourceOptions? opts = null)
type: newrelic:insights:Event
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EventArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EventArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EventArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Event Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Event resource accepts the following input properties:
- Events
List<Pulumi.
New Relic. Insights. Inputs. Event Event> An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- Events
[]Event
Event Args An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
List<Event
Event> An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
Event
Event[] An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
Sequence[Event
Event Args] An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events List<Property Map>
An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
Outputs
All input properties are implicitly available as output properties. Additionally, the Event resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Event Resource
Get an existing Event resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EventState, opts?: CustomResourceOptions): Event
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
events: Optional[Sequence[EventEventArgs]] = None) -> Event
func GetEvent(ctx *Context, name string, id IDInput, state *EventState, opts ...ResourceOption) (*Event, error)
public static Event Get(string name, Input<string> id, EventState? state, CustomResourceOptions? opts = null)
public static Event get(String name, Output<String> id, EventState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Events
List<Pulumi.
New Relic. Insights. Inputs. Event Event> An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- Events
[]Event
Event Args An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
List<Event
Event> An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
Event
Event[] An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events
Sequence[Event
Event Args] An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
- events List<Property Map>
An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
Supporting Types
EventEvent, EventEventArgs
- Attributes
[]Event
Event Attribute - Type string
- Timestamp int
- attributes
List<Event
Event Attribute> - type String
- timestamp Integer
- attributes
Event
Event Attribute[] - type string
- timestamp number
- attributes List<Property Map>
- type String
- timestamp Number
EventEventAttribute, EventEventAttributeArgs
Package Details
- Repository
- New Relic pulumi/pulumi-newrelic
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
newrelic
Terraform Provider.