1266992Smarkj/*
2266992Smarkj * This file and its contents are supplied under the terms of the
3266992Smarkj * Common Development and Distribution License ("CDDL"), version 1.0.
4266992Smarkj * You may only use this file in accordance with the terms of version
5266992Smarkj * 1.0 of the CDDL.
6266992Smarkj *
7266992Smarkj * A full copy of the text of the CDDL should have accompanied this
8266992Smarkj * source.  A copy of the CDDL is also available via the Internet at
9266992Smarkj * http://www.illumos.org/license/CDDL.
10266992Smarkj */
11266992Smarkj
12266992Smarkj/*
13266992Smarkj * Copyright (c) 2013 Joyent, Inc.  All rights reserved.
14266992Smarkj */
15266992Smarkj
16266992Smarkj#pragma D option agghist
17266992Smarkj#pragma D option quiet
18266992Smarkj
19266992SmarkjBEGIN
20266992Smarkj{
21266992Smarkj	@["demerit"] = sum(-10);
22266992Smarkj	@["wtf"] = sum(10);
23266992Smarkj	@["bot"] = sum(20);
24266992Smarkj
25266992Smarkj	@bagnoogle["SOAP/XML"] = sum(1);
26266992Smarkj	@bagnoogle["XACML store"] = sum(5);
27266992Smarkj	@bagnoogle["SAML token"] = sum(6);
28266992Smarkj
29266992Smarkj	@stalloogle["breakfast"] = sum(-5);
30266992Smarkj	@stalloogle["non-diet pepsi"] = sum(-20);
31266992Smarkj	@stalloogle["parrot"] = sum(-100);
32266992Smarkj
33266992Smarkj	printa(@);
34266992Smarkj	printa(@bagnoogle);
35266992Smarkj	printa(@stalloogle);
36266992Smarkj
37266992Smarkj	printf("\nzoomed:");
38266992Smarkj
39266992Smarkj	setopt("aggzoom");
40266992Smarkj	printa(@);
41266992Smarkj	printa(@bagnoogle);
42266992Smarkj	printa(@stalloogle);
43266992Smarkj
44266992Smarkj	exit(0);
45266992Smarkj}
46266992Smarkj
47