Home
last modified time | relevance | path

Searched defs:scraper (Results 1 – 25 of 69) sorted by relevance

123

/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/pagingscraper/
H A Dpaging_scraper_windows.go44 type scraper struct { struct
45 config *Config
46 startTime pdata.Timestamp
48 pageSize uint64
50 perfCounterScraper perfcounters.PerfCounterScraper
53 bootTime func() (uint64, error)
54 pageFileStats func() ([]*pageFileData, error)
69 func (s *scraper) start(context.Context, component.Host) error {
80 func (s *scraper) scrape(context.Context) (pdata.MetricSlice, error) {
98 func (s *scraper) scrapeAndAppendPagingUsageMetric(metrics pdata.MetricSlice) error {
[all …]
H A Dpaging_scraper_others.go38 type scraper struct { struct
39 config *Config
40 startTime pdata.Timestamp
43 bootTime func() (uint64, error)
44 virtualMemory func() (*mem.VirtualMemoryStat, error)
45 swapMemory func() (*mem.SwapMemoryStat, error)
53 func (s *scraper) start(context.Context, component.Host) error {
63 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
81 func (s *scraper) scrapeAndAppendPagingUsageMetric(metrics pdata.MetricSlice) error {
111 func (s *scraper) scrapeAndAppendPagingMetrics(metrics pdata.MetricSlice) error {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/processesscraper/
H A Dprocesses_scraper.go28 type scraper struct { struct
29 config *Config
30 startTime pdata.Timestamp
33 misc getMiscStats
43 func (s *scraper) start(context.Context, component.Host) error {
53 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/loadscraper/
H A Dload_scraper.go33 type scraper struct { struct
34 logger *zap.Logger
35 config *Config
38 load func() (*load.AvgStat, error)
47 func (s *scraper) start(ctx context.Context, _ component.Host) error {
52 func (s *scraper) shutdown(ctx context.Context) error {
57 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/networkscraper/
H A Dnetwork_scraper.go38 type scraper struct { struct
39 config *Config
40 startTime pdata.Timestamp
41 includeFS filterset.FilterSet
42 excludeFS filterset.FilterSet
45 bootTime func() (uint64, error)
46 ioCounters func(bool) ([]net.IOCountersStat, error)
47 connections func(string) ([]net.ConnectionStat, error)
73 func (s *scraper) start(context.Context, component.Host) error {
83 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/diskscraper/
H A Ddisk_scraper_others.go40 type scraper struct { struct
41 config *Config
42 startTime pdata.Timestamp
43 includeFS filterset.FilterSet
44 excludeFS filterset.FilterSet
47 bootTime func() (uint64, error)
48 ioCounters func(names ...string) (map[string]disk.IOCountersStat, error)
74 func (s *scraper) start(context.Context, component.Host) error {
84 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
174 …scraper) filterByDevice(ioCounters map[string]disk.IOCountersStat) map[string]disk.IOCountersStat {
[all …]
H A Ddisk_scraper_windows.go52 type scraper struct { struct
53 config *Config
54 startTime pdata.Timestamp
55 includeFS filterset.FilterSet
56 excludeFS filterset.FilterSet
58 perfCounterScraper perfcounters.PerfCounterScraper
61 bootTime func() (uint64, error)
87 func (s *scraper) start(context.Context, component.Host) error {
98 func (s *scraper) scrape(ctx context.Context) (pdata.MetricSlice, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/cpuscraper/
H A Dcpu_scraper.go33 type scraper struct { struct
34 config *Config
35 startTime pdata.Timestamp
38 bootTime func() (uint64, error)
39 times func(bool) ([]cpu.TimesStat, error)
47 func (s *scraper) start(context.Context, component.Host) error {
57 func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/processscraper/
H A Dprocess_scraper.go42 type scraper struct { struct
43 config *Config
44 startTime pdata.Timestamp
45 includeFS filterset.FilterSet
46 excludeFS filterset.FilterSet
49 bootTime func() (uint64, error)
50 getProcessHandles func() (processHandles, error)
76 func (s *scraper) start(context.Context, component.Host) error {
86 func (s *scraper) scrape(_ context.Context) (pdata.ResourceMetricsSlice, error) {
129 func (s *scraper) getProcessMetadata() ([]*processMetadata, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/filesystemscraper/
H A Dfilesystem_scraper.go35 type scraper struct { struct
36 config *Config
37 fsFilter fsFilter
40 partitions func(bool) ([]disk.PartitionStat, error)
41 usage func(string) (*disk.UsageStat, error)
60 func (s *scraper) Scrape(_ context.Context) (pdata.MetricSlice, error) {
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/scraper/memoryscraper/
H A Dmemory_scraper.go31 type scraper struct { struct
32 config *Config
35 virtualMemory func() (*mem.VirtualMemoryStat, error)
43 func (s *scraper) Scrape(_ context.Context) (pdata.MetricSlice, error) {
/dports/deskutils/dosage/dosage-2.17/dosagelib/
H A Devents.py62 def comicPageLink(self, scraper, url, prevUrl): argument
273 def jsonFn(self, scraper): argument
279 def getComicData(self, scraper): argument
289 def getPageInfo(self, scraper, url): argument
308 def comicPageLink(self, scraper, url, prevUrl): argument
368 def comicPageLink(self, scraper, url, prevUrl): argument
H A Dcomic.py28 def __init__(self, scraper, strip_url, image_urls, text=None): argument
54 def __init__(self, scraper, url, referrer, filename, text=None): argument
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/music/dialogs/
H A DGUIDialogInfoProviderSettings.h37 void SetAlbumScraper(ADDON::ScraperPtr scraper) { m_albumscraper = std::move(scraper); } in SetAlbumScraper()
39 void SetArtistScraper(ADDON::ScraperPtr scraper) { m_artistscraper = std::move(scraper); } in SetArtistScraper()
H A DGUIDialogInfoProviderSettings.cpp66 ADDON::ScraperPtr scraper = std::dynamic_pointer_cast<ADDON::CScraper>(defaultScraper); in Show() local
73 ADDON::ScraperPtr scraper = std::dynamic_pointer_cast<ADDON::CScraper>(defaultScraper); in Show() local
85 int CGUIDialogInfoProviderSettings::Show(ADDON::ScraperPtr& scraper) in Show()
/dports/www/miniflux/v2-2.0.35/reader/scraper/
H A Ddoc.go10 package scraper // import "miniflux.app/reader/scraper" package
H A Drules.go5 package scraper // import "miniflux.app/reader/scraper" package
H A Dscraper_test.go5 package scraper // import "miniflux.app/reader/scraper" package
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/
H A DNfoFile.cpp105 int CNfoFile::Scrape(ScraperPtr& scraper, CScraperUrl& url, in Scrape()
171 ScraperPtr scraper = std::dynamic_pointer_cast<CScraper>(addon); in GetScrapers() local
/dports/www/p5-Scrappy/Scrappy-0.94112090/lib/Scrappy/Project/
H A DDocument.pm42 has scraper => ( attribute
/dports/www/yarr/yarr-2.2/src/content/scraper/
H A Dfinder.go1 package scraper package
H A Dfinder_test.go1 package scraper package
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/music/infoscanner/
H A DMusicArtistInfo.cpp29 bool CMusicArtistInfo::Load(CCurlFile& http, const ADDON::ScraperPtr& scraper, in Load()
H A DMusicAlbumInfo.cpp44 bool CMusicAlbumInfo::Load(XFILE::CCurlFile& http, const ADDON::ScraperPtr& scraper) in Load()
/dports/www/p5-Scrappy/Scrappy-0.94112090/lib/Scrappy/
H A DProject.pm82 has scraper => ( attribute

123