There are three main things to know to work effectively with AppScope:
AppScope offers two ways to work:
libscope
) for longer-running, planned procedures. This is a guiding principle, not a strict rule. Sometimes you may prefer to plan out a CLI session, or, conversely, explore using the library.
Ask yourself whether, as you work, you will vary the options or arguments to the command you want to scope. If you plan to make these kinds of iterative changes, try the CLI; if not, go for the library.
For example:
Here's a decision tree to help you determine whether to use the CLI or the library.
ldscope
AppScope's ease of use stems from its flexible set of controls:
scope.yml
, can be invoked from either the CLI or the library.ldscope
utility, whose uses include loading the AppScope library into Go executables.Check out the CLI and library pages to see how it's done.
When AppScope has interposed a function, and then the application being scoped executes that function, AppScope can emit events and metrics. Both events and metrics follow patterns that are rigorously defined in validatable JSON Schema, and documented in the Schema Reference.
Events describe the action performed by the interposed function. For example, a net.open
event could tell you that a network connection was established by Firefox, from the local IP/port 172.16.198.210:54388
to the remote IP/port 34.107.221.82:80
, using HTTP over TCP.
Metrics can do any of three things:
Metric verbosity level
section of the config file.) For example, a fs.read
metric could tell you that an httpd
process has read a total of 320967 bytes from the filesystem, having performed multiple reads over a 10-second period.fs.read
metric could tell you that an httpd
process has done one read of 8245 bytes from one specific file, /etc/httpd/conf/httpd.conf
.proc
, metrics periodically report information about resource usage at a point in time. For example, a proc.mem
metric could tell you that httpd
is currently using 62,123 KB of memory.AppScope outputs metrics either in StatsD format or in equivalent JSON. AppScope can also watch for and intercept StatsD-formatted metrics being emitted by a scoped application.
To interpret a given metric, you must consider its type. There are four possibilities:
Metric Type | Value Description |
---|---|
gauge |
A numeric value that can increase or decrease over time – like a temperature or pressure gauge. |
counter |
A cumulative numeric value – it can only increase over time. |
timer |
Measures how long a given event type takes (duration). |
histogram |
A StatsD histogram distributes sampled observations into buckets. With AppScope, we encounter histograms only in the special case where AppScope intercepts StatsD-formatted metrics whose type is histogram . AppScope merely preserves that labeling: we assume that the scoped application has already aggregated the values into buckets. |
For example, proc.fd
is a gauge
that indicates how many files were open at one point in time. If we're scoping top
, that's typically fewer than 10. By contrast, fs.open
is a count
that increments every time a file is opened. When scoping top
over a reporting period of 10 seconds, you could see values in the hundreds or thousands.
It's important to take into account whether the application or command you are scoping is short-lived or longer-lasting. For commands that complete very quickly, a gauge
will report the value at the moment that AppScope exits the process.
By default, all classes of events and metrics are turned on – but you can turn any class of metric or event data on or off individually. To do this, include or omit the desired watch type(s) from the metric > watch[*]
array and/or the event > watch[*]
array in the config file. Environment variables can achieve the same effect. For example, the environment variable to turn off metrics of watch type statsd
would be SCOPE_METRIC_STATSD=false
. To turn on events of watch type logfile
, you'd use SCOPE_EVENT_LOGFILE=true
.