Questions tagged [exporter]
142 questions
25
votes
1 answer
SolidWorks to OBJ export
At the moment I am engaged in creation SolidWorks add-in for exporting 3D models in OBJ format .
OBJ is opened and very simple format
I've googled and found out the following information about existing solutions: there are several paid plugins and 1…

TemaTre
- 1,422
- 2
- 12
- 20
21
votes
5 answers
How can scrapy export items to separate csv files per item
I am scraping a soccer site and the spider (a single spider) gets several kinds of items from the site's pages: Team, Match, Club etc.
I am trying to use the CSVItemExporter to store these items in separate csv files,
teams.csv, matches.csv,…

Diomedes
- 938
- 1
- 7
- 15
9
votes
1 answer
perl: Exporter doesn't work with path elements in the `use` statement
I have a perl problem: importing symbols, depending on the path elements in @INC and the use statement.
If I put the full path into @INC, the import works. If a part of the path is in the use statement the module to import is executed, but the…

Sadko
- 166
- 9
7
votes
1 answer
Export scraping data in multiple formats using scrapy
I'm scraping a website to export the data into a semantic format (n3).
However, I also want to perform some data analysis on that data, so having it in a csv format is more convenient.
To get the data in both formats I can do
scrapy spider -t n3 -o…

kiril
- 4,914
- 1
- 30
- 40
6
votes
2 answers
How to export data from Kafka to Prometheus?
I am getting 300K+ metrics/Minute in a kafka topic as timeseries. I want to store and query the data. The visualisation tool which satisfy my requirement is Grafana. In order to efficiently store and query, I am thinking of storing these timeseries…

Mac
- 497
- 5
- 22
6
votes
3 answers
Prometheus exporter - reading CSV file having data from the past day
I am writing a Prometheus exporter which has to rad different CSV files. Each of them contains one entire day of data from the past (the goal is to have the exporter read a new CSV file each day. One CSV file is uploaded to the server each day,…

surfict
- 63
- 1
- 7
5
votes
1 answer
Prometheus exporter with historical data
Is it possible for a Prometheus exporter to save historical data and not only devliver the value while scraping?
My goal is that my exporter is reading a value (let's say a sensor) every 1ms and saving it. Every 15 seconds now Prometheus pulls the…

Error 404
- 105
- 2
- 10
4
votes
3 answers
How do I export Readonly variables with mod_perl?
I'm trying to make it easier to follow some Perl Best Practices by creating a Constants module that exports several of the scalars used throughout the book. One in particular, $EMPTY_STRING, I can use in just about every Perl script I write. What…

cowgod
- 8,626
- 5
- 40
- 57
4
votes
1 answer
how to set password in version 2 in snmp exporter
I set the password on the Cisco switch with version 2 of the snmp, but I could not get data with the exporter snmp how to set just password in snmp exporter for version2
error
level=info ts=2020-12-27T11:37:06.875Z caller=collector.go:224…

Reza Bojnordi
- 703
- 5
- 15
4
votes
1 answer
Do I need Exporter if I'm going for pure OO in Perl?
The docs (Exporter and perlmodlib) say:
As a general rule, if the module is
trying to be object oriented then
export nothing.
But then perlmodlib also says:
Standard, bundled modules are all
expected to behave in a well-defined
manner…

Kev
- 15,899
- 15
- 79
- 112
4
votes
1 answer
How to put labels on mtail metrics for prometheus?
# linecounter.mtail
counter line_count
/$/ {
line_count++
}
For the linecounter.mtail program, Prometheus scrape line_count{prog="linecounter.mtail",instance="bd0a0d119df6"} 2
How to put additional labels in the metric?
I couldn't find any…

SangminKim
- 8,358
- 14
- 69
- 125
4
votes
2 answers
Perl: Trouble with Exporter
Module: ./FOO/BAR/Foobar.pm
use strict;
use warnings;
package Foobar;
our($VERSION , @ISA , @EXPORT , @EXPORT_OK , %EXPORT_TAGS , $FOO);
BEGIN {
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(&foo);
}
…

vol7ron
- 40,809
- 21
- 119
- 172
3
votes
2 answers
How to export .3ds file for using RenderMonkey from 3dsMax?
How to export .3ds file for using RenderMonkey from 3dsMax 2010?
When I look into Stream Mapping in RenderMonkey,
there are POSITION, NORMAL, TEXCOORD, TANGENT, BINORMAL, TESSFACTOR etc.
I want to know how that information export for sending vertex…

P-P
- 1,670
- 5
- 18
- 35
3
votes
1 answer
How can I export a function with Moose::Exporter?
I wanted to export a simple function from a base class that I use all over my sub classes without having to use $self->myfunc() all the time, just a simple func() call.
I tried doing this with the example from Moose::Exporter
but I didnt understand…

qodeninja
- 10,946
- 30
- 98
- 152
3
votes
2 answers
Unable to export traces to OpenTelemetry Collector on Kubernetes
I am using the opentelemetry-ruby otlp exporter for auto instrumentation:
https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp
The otel collector was installed as a…

alig227
- 327
- 1
- 6
- 17