~mvo/snapd/+git/snapd-mvo:measures-cmd

Last commit made on 2019-02-01
Get this branch:
git clone -b measures-cmd https://git.launchpad.net/~mvo/snapd/+git/snapd-mvo

Branch merges

Branch information

Name:
measures-cmd
Repository:
lp:~mvo/snapd/+git/snapd-mvo

Recent commits

30af4ba... by Michael Vogt

measure: add missing lock *cough*

691f8b7... by Michael Vogt

many: add simple performance measure tool mostly for firstboot

This PR adds a very simplisit "measure" module to the tree that
can be used to take measurements of things that take time.

The API is minimal, the intended use (for now) is:
```
func foo() {
   m := measure.New("things happening in foo")
   defer m.Done()
   ...
}
```
The PR adds some measures into the firstboot code but we need to
experiment a bit too see where else we need to measure.

With that there is a new `snap debug measures` command that can
be used to get the most recent measurements.

2ada43e... by Maciej Borzecki

Merge pull request #6394 from sergiocazzolato/tests-fix-logs-daemon-notify

tests: iterate getting journal logs to support delay on boards on daemon-notify test

9fb9a17... by Paweł Stołowski

Merge pull request #6440 from sparkiegeek/patch-1

cmd/snap: fix typo in cmd_wait.go

5027f64... by Maciej Borzecki

Merge pull request #6437 from bboozzoo/bboozzoo/improve-channel-parsing

snap/channel: improve channel parsing

cecb02a... by Maciej Borzecki

Merge remote-tracking branch 'origin/master' into pull/6440

6a05658... by "John R. Lenton" <email address hidden>

Merge pull request #6443 from chipaca/pids-are-signed

daemon, polkit: pid_t is signed

e9e9c05... by Maciej Borzecki

Merge pull request #6333 from bboozzoo/bboozzoo/snap-connections-api-endpoint

daemon: introduce /v2/connections snapd API endpoint

a819ae7... by John Lenton

daemon, polkit: pid_t is signed

We were using uint32 for pids in daemon and polkit, when they're
actually signed. This would be mostly transparent to snapd, but could
lead to spurious denials from polkit in some situations.

740eec8... by Michael Vogt

Merge pull request #6389 from chipaca/snap-info-refactor-1

cmd/snap: small refactor of cmd_info's channel handling